Skip to content

Instantly share code, notes, and snippets.

@tuxedocat
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuxedocat/03503c6c06ab61ecf386 to your computer and use it in GitHub Desktop.
Save tuxedocat/03503c6c06ab61ecf386 to your computer and use it in GitHub Desktop.
# http://deeplearning.net/software/theano/tutorial/using_gpu.html
# -> just make it work with python3
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')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment