Jun-27-2018, 01:14 PM
Is this scheme right? Or it forks only with for i in range?
from pathos.multiprocessing import ProcessingPool as Pool
p=Pool()
def calculating (arg1,arg2):
**some calculating**
return result
result=p.map(calculating,arg1,arg2)
print resultThanks!
