I passed make -j8 all and make -j8 test but make -j8 runtest gives me the following error :
.build_release/tools/caffe: symbol lookup error: .build_release/tools/caffe: undefined symbol: _ZN5caffe3NetIfE21CopyTrainedLayersFromERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
Makefile:543: recipe for target 'runtest' failed
make: *** [runtest] Error 127
Tried adding -G to NVCC in Debugging section of Makefile then Make clean Make -j8 all make -j8 test make -j8 runtest. Get the same error.
Python 3.6
Have you solved it ? I have the same error
该问题是来链接库的访问权限问题,你的账户权限不够,有两种方法,第一种用sudo make runtest,第二种删除usr/lib/x86-64gxln下的libcaffe.so.1.0.0文件
该问题是来链接库的访问权限问题,你的账户权限不够,有两种方法,第一种用sudo make runtest,第二种删除usr/lib/x86-64gxln下的libcaffe.so.1.0.0文件
非常感谢你的解答,非常完美的解决了我困扰很久的问题~
Most helpful comment
该问题是来链接库的访问权限问题,你的账户权限不够,有两种方法,第一种用sudo make runtest,第二种删除usr/lib/x86-64gxln下的libcaffe.so.1.0.0文件