eyalroz / cuda-api-wrappers

Thin, unified, C++-flavored wrappers for the CUDA APIs
BSD 3-Clause "New" or "Revised" License
768 stars 79 forks source link

cuda::kernel_t::set_attribute is broken! #568

Closed eyalroz closed 6 months ago

eyalroz commented 8 months ago

In cuda::kernel_t::set_attribute, we have the line:

throw(cuda::runtime_error {cuda::status::not_yet_implemented});

which should be in the #else block of the #endif for CUDA_VERSION >= 900 , but - it's in the #if block right now.