Created
September 5, 2017 11:25
-
-
Save ankanch/9dd835047c562c3867ad1a8a4296d305 to your computer and use it in GitHub Desktop.
Tutorial of theano
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from theano import function, config, shared, tensor | |
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([], tensor.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, tensor.Elemwise) and | |
('Gpu' not in type(x.op).__name__) | |
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