Hello,
I know this was a previously a post, but the suggestions there for some reason haven't been working for me. I am running on CentOS Linux release 7.0.1406 (Core) and have installed Atlas as recommended in the installation instructions using 'sudo yum install atlas-devel'. When I run 'make all', I get the following error:
LD -o .build_release/lib/libcaffe.so
/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] Error 1
This is what my Makefile.Config looks like for BLAS:
# BLAS choice:
# atlas for ATLAS (default)
# mkl for MKL
# open for OpenBlas
BLAS := atlas
# Custom (MKL/ATLAS/OpenBLAS) include and lib directories.
# Leave commented to accept the defaults for your choice of BLAS
# (which should work)!
BLAS_INCLUDE := /usr/include
BLAS_LIB := /usr/lib64/atlas
cblas.h file is definitely sitting in /usr/include, however I don't see libcblas.so anywhere on my system...
Any other suggestions for how I may solve this? Thanks!