You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i try to execute the make command on apple m1 i'm getting error that 'cusparse.h' is not found.
How can i build the project without CUDA(GPU) support on mac?
However new problem occurred that 'Eigen/Dense' file not found, solved by install eigen brew install eigen and move corresponding fils to thundersvm/eigen.
When i try to execute the make command on apple m1 i'm getting error that 'cusparse.h' is not found.
How can i build the project without CUDA(GPU) support on mac?
cmake \ -DUSE_CUDA=OFF \ -DOpenMP_C_FLAGS="-Xpreprocessor -fopenmp -I/opt/homebrew/Cellar/libomp/17.0.6/include" \ -DOpenMP_C_LIB_NAMES=omp \ -DOpenMP_CXX_FLAGS="-Xpreprocessor -fopenmp -I/opt/homebrew/Cellar/libomp/17.0.6/include" \ -DOpenMP_CXX_LIB_NAMES=omp \ -DOpenMP_omp_LIBRARY=/opt/homebrew/Cellar/libomp/17.0.6/lib/libomp.dylib \ ..
make -j [ 3%] Building CXX object src/thundersvm/CMakeFiles/thundersvm.dir/kernelmatrix.cpp.o /Users/filipstefanovski/numerai-ml/thundersvm/src/thundersvm/kernelmatrix.cpp:7:10: fatal error: 'cusparse.h' file not found #include <cusparse.h> ^~~~~~~~~~~~ 1 error generated. make[2]: *** [src/thundersvm/CMakeFiles/thundersvm.dir/kernelmatrix.cpp.o] Error 1 make[1]: *** [src/thundersvm/CMakeFiles/thundersvm.dir/all] Error 2 make: *** [all] Error 2
The text was updated successfully, but these errors were encountered: