Re: Parallelization with Python: which, where, how?

2005-01-04 Thread Albert Hofkamp
On Mon, 20 Dec 2004 14:03:09 +0100, Mathias <[EMAIL PROTECTED]> wrote: > Can someone recommend a parallelization approach? Are there examples or > documentation? Has someone got experience with stability and efficiency? If you think a light-weight approach of distributing work and collecting the

Re: Parallelization with Python: which, where, how?

2004-12-21 Thread Irmen de Jong
Jp Calderone wrote: On 21 Dec 2004 05:04:36 -0800, Mike M?ller <[EMAIL PROTECTED]> wrote: Can someone recommend a parallelization approach? Are there examples or documentation? Has someone got experience with stability and efficiency? I am successfully using pyro http://pyro.sourceforge.net for my

Re: Parallelization with Python: which, where, how?

2004-12-21 Thread Jp Calderone
On 21 Dec 2004 05:04:36 -0800, Mike M?ller <[EMAIL PROTECTED]> wrote: >> Can someone recommend a parallelization approach? Are there examples or > > documentation? Has someone got experience with stability and efficiency? > > I am successfully using pyro http://pyro.sourceforge.net for my > paral

Parallelization with Python: which, where, how?

2004-12-21 Thread Mike M?ller
> Can someone recommend a parallelization approach? Are there examples or > documentation? Has someone got experience with stability and efficiency? I am successfully using pyro http://pyro.sourceforge.net for my parallelization task (8 node Linux cluster, embarrassing parallel). It comes with a

Re: Parallelization with Python: which, where, how?

2004-12-20 Thread Michael Hoffman
Mathias wrote: I have a (pretty much) "emberassingly parallel" problem and look for the right toolbox to parallelize it over a cluster of homogenous linux workstations. We have a >1000-node cluster here and use the commercial Platform LSF to manage it. My Poly package

Re: Parallelization with Python: which, where, how?

2004-12-20 Thread Ganesan R
> "Mathias" == Mathias <[EMAIL PROTECTED]> writes: > Dear NG, > I have a (pretty much) "emberassingly parallel" problem and look for > the right toolbox to parallelize it over a cluster of homogenous linux > workstations. I don't need automatic loop-parallelization or the like > since I prefe

Re: Parallelization with Python: which, where, how?

2004-12-20 Thread Paul Rubin
Mathias <[EMAIL PROTECTED]> writes: > Can someone recommend a parallelization approach? Are there examples > or documentation? Has someone got experience with stability and > efficiency? In the "persistent objects" thread someone mentioned a very cool package called POSH: http://poshmodule.source

Re: Parallelization with Python: which, where, how?

2004-12-20 Thread Fredrik Lundh
"Mathias" <[EMAIL PROTECTED]> wrote: > I have a (pretty much) "emberassingly parallel" problem and look for the > right toolbox to > parallelize it over a cluster of homogenous linux workstations. I don't need > automatic > loop-parallelization or the like since I prefer to prepare the work pa

Parallelization with Python: which, where, how?

2004-12-20 Thread Mathias
Dear NG, I have a (pretty much) "emberassingly parallel" problem and look for the right toolbox to parallelize it over a cluster of homogenous linux workstations. I don't need automatic loop-parallelization or the like since I prefer to prepare the work packets "by hand". I simply need - to spec