MacにCaffe(CPUのみ)をインストールする手順に従った場合、「make -j」を実行するとエラーが発生します。 Mac OSでCaffeをインストール中に「cblas.h」エラーが発生しました
In file included from src/caffe/util/blocking_queue.cpp:5:
In file included from ./include/caffe/layers/base_data_layer.hpp:9:
In file included from ./include/caffe/layer.hpp:12:
In file included from ./include/caffe/util/math_functions.hpp:11:
./include/caffe/util/mkl_alternate.hpp:14:10: fatal error: 'cblas.h' file not found
#include <cblas.h>
^
1 error generated.
make: *** [.build_release/src/caffe/util/blocking_queue.o] Error 1
は、私は行を追加しmakefile.configを修正:
USE_BLAS = apple
ADD_LDFLAGS = -I/usr/local/opt/openblas/lib
ADD_CFLAGS = -I/usr/local/opt/openblas/include
が、それは問題を解決していませんでした。
ご協力いただきありがとうございます。
これは私のために働いた。 'Makefile.config'で' BLAS_INCLUDE'と 'BLAS_LIB'の行を編集して、2つのビルドフラグを追加します。 – Peter