i have same probem.using GeForce9300M GS with 8 cuda cores 512 mb memory
On ubuntu 10.04.
Is their no way other than reinstalling driver ,toolkit and sdk???
i have same probem.using GeForce9300M GS with 8 cuda cores 512 mb memory
On ubuntu 10.04.
Is their no way other than reinstalling driver ,toolkit and sdk???
If you have mixed versions of drivers and CUDA library, your code will not work.
You need to be sure that you CUDA version matches drivers version (3.1 for 256.x, 3.2 for 260.x, etc.) and that you do not have any residual files from old drivers and/or libraries. One of problems might be caused by ldconfig - tool that manages loading libraries for programs. It has cache of all installed libraries and uses it to decide which file to link with which program. If this cache contains information about old libraries, you program will not work or will fail with strange effects.
So I am affraid that you need to remove old drivers and libraries and install new ones - else you might still have problems with running CUDA code.
If you have mixed versions of drivers and CUDA library, your code will not work.
You need to be sure that you CUDA version matches drivers version (3.1 for 256.x, 3.2 for 260.x, etc.) and that you do not have any residual files from old drivers and/or libraries. One of problems might be caused by ldconfig - tool that manages loading libraries for programs. It has cache of all installed libraries and uses it to decide which file to link with which program. If this cache contains information about old libraries, you program will not work or will fail with strange effects.
So I am affraid that you need to remove old drivers and libraries and install new ones - else you might still have problems with running CUDA code.