I'm trying to execute the next code https://github.com/erogol/KLP_KMEANS/blob/master/klp_kmeans.py using my gpu
I execute:
THEANO_FLAGS=mode=FAST_RUN,device=gpu,floatX=float32 python klp_kmeans.py
But it says:
Using gpu device 0: GeForce GTX 750 Ti
Cluster number comparison ----
Used the cpu
After doing a little debug, I noticed that it has detected cpu usage due to an instance of class 'Gemm' (checked in line #71)
Why is not using the gpu?
Thanks in advance