OS:OSX 10.11.4OSXでGPUでtheanoを使用するには?
GPU:のGeForce GT 750M、CUDA7.5
言語:Pythonのアナコンダ私は私のMac上でセットアップCUDAにtheanoの指示に従っている2.7
:
- セットPATH:輸出PATH = /開発/ NVIDIAは/ CUDA-7.5/binに:$ PATHに
- セットLD_LIBRARY_PATH:輸出LD_LIBRARY_PATH = /開発/ NVIDIAは/ CUDA-7.5/libに:$ LD_LIBRARY_PATH
- は.theanorcファイルを作成しCUDA_ROOT = /開発者を追加/ NVIDIA/CUDA-7.5 Iはtheanoウェブサイトからコードをコピーしてtest.pyファイルにそれを貼り付け
[CUDA]セクションで:
from theano import function, config, shared, sandbox
import theano.tensor as T
import numpy
import time
vlen = 10 * 30 * 768 # 10 x #cores x # threads per core
iters = 1000
rng = numpy.random.RandomState(22)
x = shared(numpy.asarray(rng.rand(vlen), config.floatX))
f = function([], T.exp(x))
print(f.maker.fgraph.toposort())
t0 = time.time()
for i in range(iters):
r = f()
t1 = time.time()
print("Looping %d times took %f seconds" % (iters, t1 - t0))
print("Result is %s" % (r,))
if numpy.any([isinstance(x.op, T.Elemwise) for x in f.maker.fgraph.toposort()]):
print('Used the cpu')
else:
print('Used the gpu')
しかし、私はこの行を実行する場合:
:THEANO_FLAGS='floatX=float32,device=gpu0,nvcc.fastmath=True' python test.py
を私はこのエラーを得ました
nvcc fatal: The version ('70300') of the host compiler ('Apple clang') is not supported
は、警告は次のようになります。それは(それがバージョン7.3である)ので、私のXcodeのバージョンで何か
WARNING (theano.sandbox.cuda): CUDA is installed, but device gpu0 is not available (error: cuda unavailable)
ですか?この問題を解決するには?