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
I am getting the following warning in fusion step, which makes the code to not use GPU:
no kernel image is available for execution on the device in libfusiongpu/fusion.cu at 51
I am using Titan V gpu with cuda 11.2.
The text was updated successfully, but these errors were encountered:
Facing the same issue, did anyone find a fix?
Update: I managed to get it working by selecting correct gencode for my GPU in the following lines in libfusiongpu/CMakeLists.txt:
libfusiongpu/CMakeLists.txt
set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}; -gencode=arch=compute_30,code=sm_30") set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}; -gencode=arch=compute_30,code=compute_30")
Sorry, something went wrong.
Thanks @bharat-b7 for sharing the fix, will mention it in the README.
No branches or pull requests
I am getting the following warning in fusion step, which makes the code to not use GPU:
I am using Titan V gpu with cuda 11.2.
The text was updated successfully, but these errors were encountered: