Skip to content

Instantly share code, notes, and snippets.

View rkosti's full-sized avatar

Ronak Kosti rkosti

  • Philipps Universität Marburg
  • Marburg, Germany
  • X @r_kosti
View GitHub Profile
@jsrois
jsrois / install_caffe_sunai_uoc.sh
Last active August 31, 2016 17:06
Installs Caffe in the Sunai@UOC server (May2016)
git clone https://github.com/BVLC/caffe.git
mkdir caffe/build
cd caffe/build
# these two hacks are required
export LC_ALL=es_ES.UTF-8 # this locale variable is unset
sed -i '29iset(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_FORCE_INLINES")' ../CMakeLists.txt
cmake -DBUILD_matlab=ON .. # matlab is disabled by default
make all # this takes a while
make runtest # all green
cd -