Parallelizing python code - design/implementation questions

2008-12-13 Thread stdazi
Hello! I'm about to parallelize some algorithm that turned out to be too slow. Before I start doing it, I'd like to hear some suggestions/hints from you. The algorithm essentially works like this: There is a iterator function foo yielding a special kind permutation of [1,n]. The main

Re: Parallelizing python code - design/implementation questions

2008-12-13 Thread Philip Semanchuk
On Dec 13, 2008, at 7:00 AM, stdazi wrote: Hello! I'm about to parallelize some algorithm that turned out to be too slow. Before I start doing it, I'd like to hear some suggestions/hints from you. Hi stdazi, If you're communicating between multiple processes with Python, you might find my