I\'d like to parallelize my Python program so that it can make use of multiple processors on the machine that it runs on. My parallelization is very simple, in that all the
Shell out and let the unix out to do your jobs:
use iterpipes to wrap subprocess and then:
From Ted Ziuba's site
INPUTS_FROM_YOU | xargs -n1 -0 -P NUM ./process #NUM parallel processes
OR
Gnu Parallel will also serve
You hang out with GIL while you send the backroom boys out to do your multicore work.