caffe faster-rcnn make -j8 报错 ,CentOS

前端之家收集整理的这篇文章主要介绍了caffe faster-rcnn make -j8 报错 ,CentOS前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

报错内容

LD -o .build_release/lib/libcaffe.so.1.0.0-rc3
/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

解决办法
去下载atlas3.10.3.tar.bz2,这个文件有4M多
这个atlas3.10.3.tar.bz2的安装方法

mkdir build
cd build 
../configure --shared
make
make install

安装atlas3.10.3.tar.bz2可能还有F77SYSLIB = -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -lgfortran根据具体情况配对的问题,不过实际好像如果有gfortran应该就没问题

然后在caffe的Makefile.config文件里改

BLAS_LIB := /usr/local/atlas/lib/

这里/usr/local/atlas/lib/有libtatlas.so文件

原文链接:https://www.f2er.com/centos/378988.html

猜你在找的CentOS相关文章