今天看一篇Paper的时候,要用到Facebook基于caffe改动的适用于3D卷积的代码:C3D: a modified version of BVLC caffe to support 3D ConvNets。于是就git下来,进行配置,Facebook用的caffe是很早之前的caffe了,看源码应该是2014年的。
在配置时,make all -j
、make test -j
都通过了,唯独在make runtest -j
这里卡住了,把我这个“专业配置caffe50年”的“老手”都难住了。但经过google,还是找到了解决办法。
我的这个解决办法不一定适用于你的,但如果能帮到你,那真是太好了!^_^…
我的问题如下:
出现问题,Google之,最后问题定位在Makefile.config
中的这一部分:
# CUDA architecture setting: going with all of them (up to CUDA 5.5 compatible).
# For the latest architecture, you need to install CUDA >= 6.0 and uncomment
# the *_50 lines below.
CUDA_ARCH := -gencode arch=compute_20,code=sm_20 \
-gencode arch=compute_20,code=sm_21 \
-gencode arch=compute_30,code=sm_30 \
-gencode arch=compute_35,code=sm_35
#-gencode=arch=compute_50,code=sm_50 \
#-gencode=arch=compute_50,code=compute_50 \
这是我开始时未改动的Makefile.config
中的部分,这种错误的情况是由于显卡计算能力的不同而又没配置好导致的。要将上面的CUDA_ARCH
参数改为与你显卡相匹配的数值。
常见的显卡计算能力如下表:
TITAN X
计算能力是
5.2
,因此,我将上面的
Makefile.config
文件中的
CUDA_ARCH
参数改为如下:
CUDA_ARCH := #-gencode arch=compute_20,code=sm_20 \
#-gencode arch=compute_20,code=sm_21 \
#-gencode arch=compute_30,code=sm_30 \
#-gencode arch=compute_35,code=sm_35
#-gencode=arch=compute_50,code=sm_50 \
#-gencode=arch=compute_50,code=compute_50 \
-gencode arch=compute_52,code=compute_52
就是把其余的都注释掉,增加一行自己显卡与之相对应计算能力的设置:
CUDA_ARCH := -gencode arch=compute_52,code=compute_52
再重新编译caffe,再make runtest -j
:
Reference:
1. http://blog.csdn.net/u013078356/article/details/51009470
2. http://www.cnblogs.com/yymn/articles/5389904.html
紧接着问题1的环境,我在make pycaffe
的时候,又报如下错误:
/usr/include/boost/python/detail/wrap_python.hpp:50:23: fatal error: pyconfig.h: No such file or directory
compilation terminated.
make: *** [python/caffe/_caffe.so] Error 1
我解决的方法参考自这个网页:
所以,按照大神的指示,敲:
$ export CPLUS_INCLUDE_PATH=/usr/include/python2.7
搞定~
import caffe
也能成功import.
make
时在 cudnn_conv_layer
报错今天在编译fast-rcnn的 caffe 时,报如下错误:
src/caffe/layers/cudnn_conv_layer.cu: error: argument of type cudnnAddMode_t is incompatible with parameter of type const void *
detected during instantiation of void caffe::CuDNNConvolutionLayer Dtype Forward_gpu(const std vector caffe Blob Dtype *, std allocator caffe Blob Dtype &, const std vector caffe Blob Dtype , std allocator caffe Blob Dtype &) [with Dtype=float]
…………
src/caffe/layers/cudnn_conv_layer.cu: error: argument of type “const void *” is incompatible with parameter of type “cudnnTensorDescriptor_t”
…………
src/caffe/layers/cudnn_conv_layer.cu: error: argument of type “const void *” is incompatible with parameter of type “cudnnTensorDescriptor_t”
…………20 errors detected in the compilation of “/tmp/tmpxft_000045c5_00000000-16_cudnn_conv_layer.compute_50.cpp1.ii”.
make: * [.build_debug/cuda/src/caffe/layers/cudnn_conv_layer.o] Error 1
make: * Waiting for unfinished jobs….
截图如下:
fast-rcnn
编译成功。
这个问题,也是我在编译 fast-rcnn
时遇到的:
In file included from ./include/caffe/util/device_alternate.hpp:40:0,
from ./include/caffe/common.hpp:19,
from ./include/caffe/blob.hpp:8,
from ./include/caffe/layer.hpp:8,
from src/caffe/layer_factory.cpp:3:./include/caffe/util/cudnn.hpp:8:34: fatal error: caffe/proto/caffe.pb.h: No such file or directory
compilation terminated.
这个问题的解决办法参考这个博客:http://blog.csdn.net/xmzwlw/article/details/48270225
用protoc从caffe/src/caffe/proto/caffe.proto生成caffe.pb.h和caffe.pb.cc
$ protoc --cpp_out=/home/chenxp/caffe/include/caffe/ caffe.proto
2016.06.28 更新
今天倩姐说她的torch
跑不起来,我看了一下,可能是CUDA
出问题了。我又将服务器上的caffe
重新编译,果然不出所料,遇到的如下问题:
F0628 15:34:16.652927 50205 syncedmem.hpp:18] Check failed: error == cudaSuccess (30 vs. 0) unknown error
* Check failure stack trace: *
@ 0x2ab5de98fdaa (unknown)
@ 0x2ab5de98fce4 (unknown)
@ 0x2ab5de98f6e6 (unknown)
@ 0x2ab5de992687 (unknown)
@ 0x2ab5e0959ef9 caffe::SyncedMemory::mutable_cpu_data()
@ 0x2ab5e0957618 caffe::Blob<>::Reshape()
@ 0x2ab5e0957c7a caffe::Blob<>::Reshape()
@ 0x57643c caffe::MemoryDataLayerTest<>::SetUp()
@ 0x8fa70a testing::internal::HandleExceptionsInMethodIfSupported<>()
@ 0x8efd71 testing::Test::Run()
@ 0x8efec7 testing::TestInfo::Run()
@ 0x8f0005 testing::TestCase::Run()
@ 0x8f027d testing::internal::UnitTestImpl::RunAllTests()
@ 0x8fa28a testing::internal::HandleExceptionsInMethodIfSupported<>()
@ 0x8ef641 testing::UnitTest::Run()
@ 0x46d027 main
@ 0x2ab5e1933f45 (unknown)
@ 0x4748e9 (unknown)
@ (nil) (unknown)
make: * [runtest] Aborted (core dumped)
我在这里找到了答案,安装个东西就可以了:sudo apt-get install nvidia-modprobe
之后,再make runtest -j
,搞定!
今天给吉姐编译 Caffe 的时候,碰到如下的错误:
.build_release/lib/libcaffe.so: undefined reference to cv::imdecode(cv::_InputArray const&, int)
.build_release/lib/libcaffe.so: undefined reference to cv::imread(cv::String const&, int)
因为昨天我将在服务器上编译安装了 openCV3,所以我怀疑是 openCV 的问题。
想起来 Caffe 的 Makefile.config
中,有一个注释,当我们使用 openCV3 的时候,需要取消。果然,当取消之后,就可以 make all
了。
但是随后又碰到了一个问题,是在 make runtest -j
的时候,报如下错误:
Error while loading libraries: libopencv_core.so.3.1: connot open shared object file: No such file or directory
Google 之,参考如下两个,找到解决办法:
1. https://github.com/BVLC/caffe/issues/3700
2. http://www.cnphp6.com/archives/141601
报这个错误是因为找不到 openCV3 的库,可以使用下面方式导入:
export LD_LIBRARY_PATH =/usr/local/lib:$LD_LIBRARY_PATH
再 make runtest -j
的时候,就全部成功了。