Skip to content Skip to sidebar Skip to footer

Mac Caffe Cuda Driver Issue

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 fi

Solution 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.

Post a Comment for "Mac Caffe Cuda Driver Issue"