首頁 > 軟體

Ubuntu下讓Theano使用GPU

2020-06-16 17:35:34

Ubuntu下安裝完Theano以及cuda後,可以使用如下程式來測試你當前是否使用了GPU:

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')

假設將上述程式碼存放在test_gpu.py中,執行test_gpu.py,如果輸出如下結果:

[Elemwise{exp,no_inplace}(<TensorType(float32, vector)>)]
Looping 1000 times took 3.06635117531 seconds
Result is [ 1.23178029  1.61879337  1.52278066 ...,  2.20771813  2.29967761
  1.62323284]
Used the cpu

則說明當前使用的是CPU,並沒有使用GPU。
若出現類似如下結果:

Using gpu device 0: GeForce GTX 580
[GpuElemwise{exp,no_inplace}(<CudaNdarrayType(float32, vector)>), HostFromGpu(GpuElemwise{exp,no_inplace}.0)]
Looping 1000 times took 0.638810873032 seconds
Result is [ 1.23178029  1.61879349  1.52278066 ...,  2.20771813  2.29967761
  1.62323296]
Used the gpu

這說明當前使用了GPU,並且告訴了我們當前使用的是哪個GPU。

如果你電腦上有GPU,並且你成功安裝了CUDA,但是你的程式卻沒有使用GPU,那說明你當前的theano設定中預設是不使用GPU的,可以通過以下兩個方式來使你的theano使用GPU。
1、在執行test_gpu.py時,在python test_gpu.py前加下語句:

# THEANO_FLAGS=mode=FAST_RUN,device=gpu,floatX=float32 python test_gpu.py

2、設定你的.theanorc檔案
在你home下面會有一個.theanorc檔案,在這個檔案中新增如下語句:

[global]
floatX = float32
device = gpu0

[lib]
cnmem = 1

注意:如果在你的home下沒有發現.theanorc檔案,按ctrl+h(顯示隱藏檔案)就可以看到了。

另外,方法一其實是一種覆蓋型方式,即在執行當前的.py檔案時,用當前的THEANO_FLAGS來覆蓋.theanorc中預設的設定。


IT145.com E-mail:sddin#qq.com