问题
I'm trying to build caffe with the python wrapper on Mac OSX 10.0, but keep getting the following error when I execute the command: make runtest (make all -j8 and make test work fine).
Check failed: error == cudaSuccess (35 vs. 0) CUDA driver version is insufficient for CUDA runtime version
I have updated the CUDA driver to the latest version online. I also tried uninstalling and reinstalling CUDA and the driver, but the error still persists. How can I solve this?
回答1:
As was teased out in the comments, the basic problem here is an attempt to use CUDA on a GPU that does not support it (AMD Radeon ...).
CUDA is a GPU programming technology that only runs on NVIDIA GPUs (ignoring emulators and the like.)
To make forward progress, some possibilities might be:
- Switch to another machine that has an NVIDIA GPU.
- Modify the configuration of Caffe so that it does not use or depend on CUDA.
来源:https://stackoverflow.com/questions/31688759/mac-caffe-cuda-driver-issue