美文网首页
caffe-warnning及报错

caffe-warnning及报错

作者: HD1992 | 来源:发表于2018-05-03 20:58 被阅读69次

    ubuntu 16.04 cuda 8.0 opencv3.1.0 安装caffesudo

    warnning:

    nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).


    1. 从CUDA 8.0开始compute capability 2.0和2.1被弃用了,所以可以将-gencode arch=compute_20,code=sm_20 和-gencode arch=compute_20,code=sm_21这两行删除。


    2.这个是与GPU的计算能力相关的

    附上源码:

    # For CUDA < 6.0, comment the *_50 lines for compatibility.

    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


    3.关于如何设置计算能力,NVIDIA官方文档在这里http://docs.nvidia.com/cuda/cu ... ility


    4. No module named _caffe 和No module named caffe错误解决

    2017年05月29日 16:14:41

    阅读数:8215

    1,在代码中进行 import caffe 后报错ImportError:No module named _caffe

         因为我显卡之前出错了,重现编译了caffe ,后面导致如上问题,解决方法如下:

        cd caffe  #进入caffe目录,可能你的是cd caffe-master

        sudo make clean #清除原编译

        sudo make -j4  # make -j4或者make -j8 这根据你自己电脑来定

        sudo make pycaffe   #最关键的一个

        sudo  make runtest   #测试编译

    2,在代码中进行 import caffe 后报错ImportError:No module named caffe,可能就是路径的问题了

        在代码中添加:

       import os,sys

       caffe_root='/home/ubuntu/caffe' # caffe的根目录

       os.chdir(caffe_root)  #os.chdir()用于改变当前工作目录到指定的路径

       sys.path.insert(0,caffe_root+'python)

       import caffe 就没问题了,或者参考http://blog.csdn.net/striker_v/article/details/51596628

    相关文章

      网友评论

          本文标题:caffe-warnning及报错

          本文链接:https://www.haomeiwen.com/subject/srcrixtx.html