ERROR(theano.gpuarray):无法初始化pygpu,支持残疾人(ERROR (the

2019-09-26 15:24发布

我想theano 0.9配置为使用GPU,但得到了这样的错误。 我使用了NVIDIA GeForce940米和CUDA 8.此前窗口10我的系统工作正常theano 0.8 GPU计算。 我刚刚更新了theano。

 ERROR (theano.gpuarray): Could not initialize pygpu, support disabled
 Traceback (most recent call last):
 File "C:\Users\YL\Anaconda2\lib\site- packages\theano\gpuarray\__init__.py",   
 line 175, in <module>
use(config.device)
File "C:\Users\YL\Anaconda2\lib\site-packages\theano\gpuarray\__init__.py", line 162, in use
init_dev(device, preallocate=preallocate)
File "C:\Users\YL\Anaconda2\lib\site-packages\theano\gpuarray\__init__.py", line 65, in init_dev
sched=config.gpuarray.sched)
File "pygpu\gpuarray.pyx", line 614, in pygpu.gpuarray.init (pygpu/gpuarray.c:9415)
File "pygpu\gpuarray.pyx", line 566, in pygpu.gpuarray.pygpu_init (pygpu/gpuarray.c:9106)
File "pygpu\gpuarray.pyx", line 1021, in pygpu.gpuarray.GpuContext.__cinit__ (pygpu/gpuarray.c:13468)
GpuArrayException: Error loading library: -1

如果没有GPU配置,theano工作正常,否则会产生错误。 我想我必须做一些错误的配置。 我.theanorc文件如下:

[global]
device = cuda
floatX = float32

[cuda]
root = C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5

[nvcc]
fastmath = True

Answer 1:

当我运行Theano代码,我收到相同(相似)的错误。 我使用的是两颗GPU的(Optimus技术)的笔记本电脑。 什么固定它,我是在启用GPU上运行我的Python代码如下所示: optirun python2 my_code.py希望这有助于。



文章来源: ERROR (theano.gpuarray): Could not initialize pygpu, support disabled
标签: gpu theano