blob: 37a8c3b330d9510672cea92cb1df350a7a37ca02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
To use Theano in multi-threaded mode, install OpenBLAS with option
OPENMP enabled, install py-numpy with OpenBLAS support and use this
minimal ~/.theanorc:
---------------------------
[global]
cxx = %%CXX%%
openmp = True
[blas]
ldflags = -lopenblasp
---------------------------
You can control the number of threads used with OMP_NUM_THREADS environment
variable.
|