Theano GPU安装失败的nvcc

时间:2016-02-12 15:33:33

标签: python gpu theano

安装Winpython后,启动

from theano import function, config, shared, sandbox
import theano.sandbox.cuda.basic_ops
import theano.tensor as T

我收到此错误消息:

ValueError:Theano nvcc.flags仅支持参数/值对,它们之间没有空格。例如:不支持“--machine 64”,但支持“--machine = 64”。请添加'='符号。 nvcc.flags值为'D:_devs \ Python01 \ WinPython-64 \ python-3.4.3.amd64 \ libs'

我的theanorc。配置文件是:

[nvcc]
fastmath = True
flags=-LD:\_devs\Python01\WinPython-64\python-3.4.3.amd64\libs
compiler_bindir=D:\_app\visualstudio13\VC\bin

有人有想法吗?

1 个答案:

答案 0 :(得分:0)

找到问题并更正文件语法:

[nvcc]
fastmath = True
--flags=-LD:\_devs\Python01\WinPython-64\python-3.4.3.amd64\libs
--compiler_bindir=D:\_app\visualstudio13\VC\bin\

解决。