Hi,
I would like to check if i did the correct instalation , in order to upgrade cuda to 2.2.1 version, i did this:
-
downloaded cuda 2.2.1 (filename: cudasdk_2.21_linux.run) from here http://forums.nvidia.com/index.php?showtopic=98589
-
ran these comands:
mv /usr/local/cuda /usr/local/cuda-old
mkdir /usr/local/cuda
./cudatoolkit_2.2_linux_64_fedora9.run
./cudasdk_2.21_linux.run
cd /usr/local/cuda
make
when i check the cuda version after installation i see that it still has the 2.2 version:
master cuda # nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2009 NVIDIA Corporation
Built on Thu_Apr__9_05:05:52_PDT_2009
Cuda compilation tools, release 2.2, V0.2.1221
master cuda #
note the : Cuda compilation tools, release 2.2, V0.2.1221
Correct me if i am wrong, but you have to first install cudatoolkit (which is only 2.2 version), and then overwrite /usr/local/cuda with cudasdk 2.2.1 , and then compile, right? Well this procedure doesn’t confirms cuda 2.2.1 installation. What is wrong?
Thanks in advance