parmap
parmap copied to clipboard
Easy to use map and starmap python equivalents
Hi, I have curiosity to know who is using parmap and for what purpose. Sometimes I believe there are no users out there and then I feel happy when someone...
Sir, parmap is a very useful tool but it is difficult to stop it in a notebook with pm_parallel=True. To solve this problem, the module multiprocessing should be replaced by...
Hey thanks for your project I am trying to break some code while it's running and I find that ctrl-c doesn't actually terminate the run. It gives error but python...
First, great little library! I am often in the situation where i want to (using multiple cores) compute something like `(f(x) for x in xs)`, where `xs` is a generator...
Do you see any possibilities to allow lambda or nested functions with `parmap.map`?
Is there a way to share a global variable that is writeable from all parallel tasks?
It is possible to easily achieve something like: ```python def f(x, y): r = 0 for i in range(100000000000): r += i return r parmap.map(f, x=1, y=range(100)) ``` ?