Multi-Processor Python

e830b9082ef3023ecd0b470de7444e90fe76e6d21bb618419df7c8_640_serverIn our lab, we often need to run independent python functions on multiple processors. By independent, I mean the functions don’t need to communicate with each other (embarrassingly parallel). Our current scripts divide the individual “tasks” evenly in the beginning and then run each “chunk” (i.e., subset of all tasks) on a separate processor. But occasionally one of these chunks will take much longer to finish than the others, so the processors aren’t all used optimally.

  1. There needs to be periodic “load balancing.”
  2. We need a solution that works on windows if possible.
  3. We’re looking for something written in native python that can be easily incorporated into our projects, without requiring the installation of any third-party modules.