作者:r_elease靜 | 来源:互联网 | 2023-09-14 23:18
我已经在我的CentOS7(64位)中安装了BLAS.但是当我的使用全部在我的‘caffe’.它报告了一个错误:usrbinld:cannotfind-lcblasusrbinld
我已经在我的CentOS7(64位)中安装了BLAS.但是当我的使用全部在我的
‘caffe’.它报告了一个错误:
/usr/bin/ld: cannot find -lcblas
/usr/bin/ld: cannot find -latlas
collect2: error: ld returned 1 exit status
make: *** [.build_release/lib/libcaffe.so.1.0.0-rc3] Error 1
我不知道为什么会这样,以及如何解决它.
解决方法:
我最终使用OpenBLAS来解决这个问题.
yum install openblas-devel
sed -i 's/BLAS := atlas/BLAS := open/' Makefile.config
sed -i '/BLAS := open/aBLAS_INCLUDE := \/usr\/include\/openblas/' Makefile.config
这意味着安装OpenBLAS并将BLAS:= altas更改为BLAS:= open
并在Makefile.config中添加BLAS_INCLUDE:= /usr/include / openblas /.完成这些更改后,重建.