Parfor for Python

前端 未结 8 1370
死守一世寂寞
死守一世寂寞 2020-12-07 17:46

I am looking for a definitive answer to MATLAB\'s parfor for Python (Scipy, Numpy).

Is there a solution similar to parfor? If not, what is the complication for creat

8条回答
  •  遥遥无期
    2020-12-07 18:03

    There are many Python frameworks for parallel computing. The one I happen to like most is IPython, but I don't know too much about any of the others. In IPython, one analogue to parfor would be client.MultiEngineClient.map() or some of the other constructs in the documentation on quick and easy parallelism.

提交回复
热议问题