Mac Caffe CUDA driver issue

时间:2015-07-28 23:20:33

标签: python macos cuda wrapper caffe

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 个答案:

答案 0 :(得分:0)

正如评论中所阐述的那样,这里的基本问题是尝试在不支持它的GPU上使用CUDA(AMD Radeon ......)。

CUDA是一种GPU编程技术,仅在NVIDIA GPU上运行(忽略模拟器等)。

为了取得进展,一些可能性可能是:

  1. 切换到另一台具有NVIDIA GPU的计算机。
  2. 修改Caffe的配置,使其不使用或依赖CUDA。