Parallel mapping in Python
I stumbled over the following question the other day: Is there a simple way to make python parallelize list comprehensions? List comprehensions in general are not easily parallelizeable with standard python tools, but if it’s about a list comprehension that just maps a computationally intensive function over a list, and you want to parallelize the …