linux怎么查看本机内存大小
363
2022-09-15
ubuntu 16.04 theano GPU加速测试代码过程示例
在看这篇博客之前,作者的运行环境首先要装好cuda和cudnn。然后我的环境为:
ubuntu 16.04anacondapython 3.6theano 1.0.2 py36h6bb024c_0
首先安装pygpu
conda install -c conda-forge pygpu
然后进行theano-gpu测试,我的测试代码为theano-gpu-test.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 range(iters): r = f() t1 = time.time() print('Looping %d times took' % iters, t1 - t0, 'seconds') print('Result is', 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')
执行的命令gpu版本:
THEANO_FLAGS=mode=FAST_RUN,device=cuda,floatX=float32 python theano-gpu-test.py
我的输出是:
Using cuDNN version 6021 on context NoneMapped name None to device cuda: GeForce GTX 1080 Ti (0000:03:00.0)[GpuElemwise{exp,no_inplace}(
执行命令CPU版本:
python theano-gpu-test.py
我的电脑输出为:
[Elemwise{exp,no_inplace}(
用GPU运行程序花了0.23秒,用CPU运行程序花了26秒
如果不想每次用gpu的时候加上前面的一长串,则需要配置.theanorc文件,然后就直接输入python theano-gpu-test.py命令就行了,我这里把我配置的过程分享一下:
vim ~/.theanorc
然后加上
[global]floatX=float32device=cuda
按esc :wq退出就行了,亲测可用。
参考文献
[1].Theano2.1.12-基础知识之使用GPU.
[2].Theano坑--无法调用GPU. https://jianshu.com/p/12af936e20ef
[3].gpuarray. http://deeplearning.net/software/libgpuarray/installation.html
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~