-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
Update CUDA Toolkit version to 11.7 in all projects and docs #133
base: master
Are you sure you want to change the base?
Conversation
Any reason why this is still pending? |
Turns out they don't accept community contributions at the moment as per the README Just clone the forked repo
Or simply find and replace the version number. |
According to the guideline by cosmin-bianu, I moved Samples to the path '/usr/local/cuda-11.7/'. But I have met the error while I verify the Samples.
usr/local/cuda/bin/nvcc -ccbin g++ -I../../../Common -m64 --threads 0 --std=c++11 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_37,code=sm_37 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_75,code=sm_75 -gencode arch=compute_80,code=sm_80 -gencode arch=compute_86,code=sm_86 -gencode arch=compute_86,code=compute_86 -o deviceQuery.o -c deviceQuery.cpp Please help indicate what happens with the error. Notes:
|
I find out a way to solve the problem. The major problem is that the new Nvidia guidelines are too vague to be understood. I make the following correct procedure to make a success execution. 1. Enter into the following directory
2. Make a new directory
It generates the path as follows. /cd /usr/local/cuda-11.7/samples 3. Move (or git) cuda-samples to the targeted samples Download the file, upzip and rename cuda-samples-master as cuda-samples
4. Enter into the new directory
5. Conduct the make command
6. make the final show
./deviceQuery Starting CUDA Device Query (Runtime API) version (CUDART static linking) Device 1 CUDA Capable device(s) Result = PASS Cheers. Notes: I still do not figure out a way to handle the 5_Simulations case. That would be a visual showing and make great sense. |
Fixes #128