Relative Content

Tag Archive for pythonnumpymatrixmultiprocessing

bottleneck in multiprocessing in python

I have a code that uses two parameters (r,t) to create a matrix H. I then find the eigenvalues of this matrix and do some computations using the eigenvalues. Now, I need to do this for many different values of (r,t), (around 200). Since each operation is independent I tried to use multiprocessing in python to have all these operations done simultaneously.