I want to parallelize the execution of a for loop written in python-2.7 on the quadcore processor of my computer's CPU.
Shall I implement this with joblib.Parallel or with Parallel-Python?
I've seen joblib.Parallel being used more, but the first line of this part of its documentation worried me: it sets forked processes to work on "separate CPUs". Does that mean it can't do it on separate cores of the same CPU?