Theano実行GPU構成


pip install theano
あとはGPUで走れるわけじゃないし
シナリオを書くなんて信じられない
check_GPU.py
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 xrange(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,lib.cnmem=1'  python check_GPU.py

gpu 0はあなたが使うgpuです.複数のgpuならいくつかの番号があります.
公式の説明はこちらですよ:http://deeplearning.net/software/theano/library/config.html#envvar-THEANORC
面倒くさいからこんなことができる
  $vim HOME/.theanorc

ファイルを以下のように変更します(公式サイトの説明です~)
[global]
floatX = float32
device = gpu0

[lib]
cnmem = 1