Description
I've found several issues with the Boost dependencies in the Caffe classification and detection programs (caffe-classification
, caffe-classification-cuda
, caffe-classification-opencl
, caffe-detection-ssd
, caffe-detection-ssd-cuda
).
- Boost is specified twice as follows:
"boost": {
"local": "yes",
"name": "Boost C++ libraries",
"skip_from_bat": "yes",
"sort": 30,
"tags": "lib,boost"
},
...
"lib-boost": {
"force_add_static_lib_path": "yes",
"local": "yes",
"name": "Boost library",
"sort": 13,
"tags": "lib,boost"
},
Apart from the obvious name difference, the first dependency specifies "skip_from_bat": "yes"
, while the second dependency specifies "force_add_static_lib_path": "yes"
. Removing the first dependency seems not to affect anything at compile or runtime on Linux. But I'm cautious not to commit this change until we understand possible implications on Windows and Android.
- With the
lib-boost
sort order of 13, using a non-system Boost installed via CK (e.g.ck install package:lib-boost-1.62.0
) results in the following link warnings:
g++-5 classification.o -o classification -L/home/anton/CK_TOOLS/lib-caffe-bvlc-master-cpu-master-gcc-5.4.0-linux-64/install/lib -lcaffe -L/home/anton/CK_TOOLS/lib-gflags-2.2.0-gcc-5.4.0-linux-64/install/lib -lgflags -L/usr/lib/x86_64-linux-gnu -lglog -L/home/anton/CK_TOOLS/lib-openblas-0.2.19-gcc-5.4.0-linux-64/install/lib -lopenblas -L/home/anton/CK_TOOLS/lib-protobuf-host-3.1.0-linux-64/install/lib -lprotobuf -L/usr/lib/x86_64-linux-gnu -lopencv_core -L/home/anton/CK_TOOLS/lib-boost-1.62.0-gcc-5.4.0-linux-64/install/lib -L/home/anton/CK_TOOLS/lib-rtl-xopenme-0.3-gcc-5.4.0-linux-64/lib -lrtlxopenme -lglog -lboost_thread -lboost_date_time -lboost_filesystem -lboost_system -lopencv_imgproc -lopencv_highgui -lopencv_core -lm
/usr/bin/ld: warning: libboost_system.so.1.62.0, needed by /home/anton/CK_TOOLS/lib-caffe-bvlc-master-cpu-master-gcc-5.4.0-linux-64/install/lib/libcaffe.so, may conflict with libboost_system.so.1.58.0
/usr/bin/ld: warning: libboost_thread.so.1.62.0, needed by /home/anton/CK_TOOLS/lib-caffe-bvlc-master-cpu-master-gcc-5.4.0-linux-64/install/lib/libcaffe.so, may conflict with libboost_thread.so.1.58.0
***************************************************************************************
and a runtime failure suggesting the conflict does happen:
(run ...)
executing code ...
./tmp-SujpBs.sh: line 38: 10861 Aborted (core dumped) ./classification ${CK_CAFFE_MODEL_FILE} ${CK_CAFFE_MODEL_WEIGHTS} ../imagenet_mean.binaryproto ../synset_words.txt /home/anton/CK_REPOS/ctuning-datasets-min/dataset/image-jpeg-dnn-cropped-panda/cropped_panda.jpg > tmp-output1.tmp 2> tmp-output2.tmp
(printing output files)
* tmp-output1.tmp
* tmp-output2.tmp
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
Changing the sort order to 6 eliminates the warnings:
g++-5 classification.o -o classification -L/home/anton/CK_TOOLS/lib-caffe-bvlc-master-cpu-master-gcc-5.4.0-linux-64/install/lib -lcaffe -L/home/anton/CK_TOOLS/lib-gflags-2.2.0-gcc-5.4.0-linux-64/install/lib -lgflags -L/home/anton/CK_TOOLS/lib-boost-1.62.0-gcc-5.4.0-linux-64/install/lib -L/usr/lib/x86_64-linux-gnu -lglog -L/home/anton/CK_TOOLS/lib-openblas-0.2.19-gcc-5.4.0-linux-64/install/lib -lopenblas -L/home/anton/CK_TOOLS/lib-protobuf-host-3.1.0-linux-64/install/lib -lprotobuf -L/usr/lib/x86_64-linux-gnu -lopencv_core -L/home/anton/CK_TOOLS/lib-rtl-xopenme-0.3-gcc-5.4.0-linux-64/lib -lrtlxopenme -lglog -lboost_thread -lboost_date_time -lboost_filesystem -lboost_system -lopencv_imgproc -lopencv_highgui -lopencv_core -lm
***************************************************************************************
Interestingly, increasing the sort order past 6 produces the same warnings and failures. Now, the sort order of 7 given to lib-glog
, so I suspect it is GLog that "mixes in" the system Boost 1.58.0.
Now, I am currently using the system GLog as well.
anton@diviniti:~/CK_REPOS/ck-caffe/program/caffe-classification$ ck show env --tags=lib,glog
Env UID: Target OS: Bits: Name: Version: Tags:
49231e5e41df8f74 linux-64 64 GLog library 0 64bits,glog,host-os-linux-64,lib,target-os-linux-64,v0
anton@diviniti:~/CK_REPOS/ck-caffe/program/caffe-classification$ cat /home/anton/CK_REPOS/local/env/49231e5e41df8f74/env.sh
#! /bin/bash
# CK generated script
if [ "$1" != "1" ]; then if [ "$CK_ENV_LIB_GLOG_SET" == "1" ]; then return; fi; fi
# Soft UOA = lib.glog (d42a1422abbcbb6a) (lib,glog,64bits,host-os-linux-64,target-os-linux-64,v0)
# Host OS UOA = linux-64 (4258b5fe54828a50)
# Target OS UOA = linux-64 (4258b5fe54828a50)
# Target OS bits = 64
# Tool version = 0
# Tool split version = [0]
export CK_ENV_LIB_GLOG_LIB=/usr/lib/x86_64-linux-gnu
export CK_ENV_LIB_GLOG_INCLUDE=/usr/include
export LD_LIBRARY_PATH="/usr/lib/x86_64-linux-gnu":$LD_LIBRARY_PATH
export LIBRARY_PATH="/usr/lib/x86_64-linux-gnu":$LIBRARY_PATH
export CK_ENV_LIB_GLOG=/usr
export CK_ENV_LIB_GLOG_DYNAMIC_NAME=libglog.so
export CK_ENV_LIB_GLOG_LFLAG=-lglog
export CK_ENV_LIB_GLOG_STATIC_NAME=libglog.a
export CK_ENV_LIB_GLOG_SET=1
Next, I'll try to install GLog via CK.