运行chainer程序出现catastrophic error: cannot open source file "cuda_fp16.h"

      在github上下了一个chainer的程序,安装chainer和cupy-cuda91后立即运行程序出现下面异常

                       catastrophic error: cannot open source file "cuda_fp16.h"

       在网上搜解决办法,看了chainer官网的安装教程,也看了一些博客(chainer相关的东西很少,很多也是重复的)都没能找到解决问题;同时网上的一些简单测试程序测试cupy和chainer都显示也安装成功,但运行我的程序就是出错。

        后面自己摸索程序出错提示找到解决办法,下面介绍这个对我有效的办法:

         1、修改cupy安装目录下的一个文件,叫compiler.py;此文件在我电脑上的安装目录是

                  /home/alloymei/anaconda3/envs/tensorflow/lib/python3.5/site-packages/cupy/cuda/compiler.py

        2、在此程序上293行添加一行代码:backend='nvcc'

                                   运行chainer程序出现catastrophic error: cannot open source file

 

你可能感兴趣的:(安装依赖项,配置)