CUDA driver version is insufficient for CUDA runtime version

前端 未结 8 1167
抹茶落季
抹茶落季 2020-12-05 13:48

I got the message:

\"cutilCheckMsg() CUTIL CUDA error :
kernel launch failure : CUDA driver
version is insufficient for CUDA
runtime

8条回答
  •  隐瞒了意图╮
    2020-12-05 14:22

    I saw the same at runtime with the latest driver on Mac OS 10.6.

    cudaError_t error = cudaGetDevice(&device);
    printf("%s\n", cudaGetErrorString(error));
    

    I went back to the developer site, downloaded the driver again and now it runs. http://developer.nvidia.com/object/cuda_3_1_downloads.html#MacOS

提交回复
热议问题