I am learning deep learning recently and my friend recommended me caffe. After install it with OpenBLAS, I followed the tutorial, MNIST task in the doc. But later I found it was super slow and only one CPU core was working.
The problem is that the servers in my lab don't have GPU, so I have to use CPUs instead.
I Googled this and got some page like this . I tried to export OPENBLAS_NUM_THREADS=8
and export OMP_NUM_THREADS=8
. But caffe still used one core.
How can I make caffe use multi CPUs?
Many thanks.