Mac Caffe CUDA driver issue

给你一囗甜甜゛ 提交于 2019-12-24 03:51:29

问题


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:

  1. Switch to another machine that has an NVIDIA GPU.
  2. 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!