Skip to content

solrex/caffe-on-centos6

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Caffe Build Environment on CentOS 6.x

Root User

git clone https://github.com/solrex/caffe-on-centos6.git
cd caffe-on-centos6
./install-deps.sh

Normal User:

cd caffe/source/path/
wget https://raw.githubusercontent.com/solrex/caffe-on-centos6/master/Makefile.config -O Makefile.config
# Change CPU_ONLY and USE_CUDNN manually
vim Makefile.config
# Link with -lopenblasp which can make use of multi-core CPU
sed -i 's/openblas/openblasp/g' Makefile
CPU_CORES=$(grep processor /proc/cpuinfo | wc -l)
make -j $CPU_CORES
make test -j $CPU_CORES
make distribute
make runtest

About

Caffe Build Environment on CentOS 6.x

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages