We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Fixes #568: Now correctly reporting whether or not setting function a…
4c52792
…ttributes is implemented (CUDA >= 9.0 or not)
6a8ea2f
bf5b936
df430d6
9d5818e
4abb5b6
eyalroz
No branches or pull requests
In cuda::kernel_t::set_attribute, we have the line:
which should be in the #else block of the #endif for CUDA_VERSION >= 900 , but - it's in the #if block right now.
The text was updated successfully, but these errors were encountered: