I have the same problem, when i send calculations to be performed in the GPU, i receive the message:
CUDA version is insufficientfor CUDART version.
someone knows how can i solve it?
Hi, I had the same problem in Ubuntu 9.10 and I solved it by downgrading my toolkit version. I’m also using emulation and it works fine :) it seems like your SDK and Toolkit should have compatible versions. I’ve installed version 2.3 for both and works ok :)
I am using visual studio 2008 with CUDA 3.0 in windows 7. When I tried to run sample code in emu mode, I encountered the same problem.
I have solved it now, with a different approach. That is, I deleted all those “CUDA_SAFE_CALL” function, and replace the with the naive function calling.
For instance, there is a “CUDA_SAFE_CALL( cudaFree(device_result));” statement in sample code which leads to the error.
I replaced it with “cudaFree(device_result)”, and it works fine now!
I am using visual studio 2008 with CUDA 3.0 in windows 7. When I tried to run sample code in emu mode, I encountered the same problem.
I have solved it now, with a different approach. That is, I deleted all those “CUDA_SAFE_CALL” function, and replace the with the naive function calling.
For instance, there is a “CUDA_SAFE_CALL( cudaFree(device_result));” statement in sample code which leads to the error.
I replaced it with “cudaFree(device_result)”, and it works fine now!