I want to use all CPU threads. Processing is performed using only one of the two CPUs
import numpy as np
a=np.random.random((25000,5000))
b=np.random.random((5000,25000))
c=np.dot(a,b)
--------------------------
import multiprocessing
multiprocessing.cpu_count()
Out64
---------------------------
psutil.cpu_count(logical=False)
Out32