You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the cuda_runtime.h file is not being found, which is a part of the CUDA Toolkit and required for compiling CUDA applications. I assume that either the CUDA Toolkit is not installed correctly, or CMake cannot find cuda_runtime.h.
You can check with 'nvcc --version' whether your CUDA Toolkit is correctly installed. Also make sure that your LD_LIBRARY_PATH environment variable includes the path to the CUDA Toolkit libraries: export PATH=/usr/local/cuda/bin:${PATH} export LD_LIBRARY_PATH=/usr/local/cuda/lib64:${LD_LIBRARY_PATH}
When I run
cmake ../crsc
Heres the output ;
I don't know what I'm doing wrong. Any help would be appreciated.
The text was updated successfully, but these errors were encountered: