Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How configure theano on Windows?

Tags:

python

gpu

theano

I have Installed Theano on Windows machine and followed the configuration instructions.

I placed the following .theanorc.txt file in C:\Users\my_username folder:

#!sh
[global]
device = gpu
floatX = float32

[nvcc]
fastmath = True
# flags=-m32 # we have this hard coded for now

[blas]
ldflags =
# ldflags = -lopenblas # placeholder for openblas support

I tried to run the test, but haven't managed to run it on GPU. I guess the values from .theanorc.txt are not read, because I added the line print config.device and it outputs "cpu".

Below is the basic test script and the output:

from theano import function, config, shared, sandbox
import theano.tensor as T
import numpy
import time

print config.device


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

output:

pydev debugger: starting (pid: 9564)
cpu
[Elemwise{exp,no_inplace}(<TensorType(float64, vector)>)]
Looping 1000 times took 10.0310001373 seconds
Result is [ 1.23178032  1.61879341  1.52278065 ...,  2.20771815  2.29967753
  1.62323285]
Used the cpu

I have installed CUDA Toolkit successfully but haven't managed to install pyCUDA. I guess Theano should work without pyCUDA installed anyway.

I would be very thankful if anyone could help out solving this problem. I have followed these instructions but don't know why the configuration values in the program don't match the values in .theanorc.txt file.

like image 261
Niko Gamulin Avatar asked Jan 18 '15 15:01

Niko Gamulin


People also ask

How install Theano on Windows?

Developer Installation Install the developer version of Theano with: git clone git://github.com/Theano/Theano.git cd Theano <sudo> pip install <--user> <--no-deps> -e .

Which command used to install Theano?

To install Theano and its dependencies, you use pip from the command line as follows. These are the minimal dependencies that we are going to need in this tutorial.


1 Answers

Contrary to what has been said on a couple of pages, my installation (Windows 10, Python 2.7, Theano 0.10.0.dev1) would not interpret config instructions within a .theanorc.txt file in my user profile folder, but would read a .theanorc file.

If you are having trouble creating a file with that style of name, use the following commands at a terminal:

cd %USERPROFILE%
type NUL > .theanorc

Sauce: http://ankivil.com/making-theano-faster-with-cudnn-and-cnmem-on-windows-10/

like image 192
4Oh4 Avatar answered Nov 03 '22 04:11

4Oh4