Re: [OMPI users] Choices on how to implement a python module in MPI.

2007-02-05 Thread Bo Peng
On 2/5/07, Tom Rosmond wrote: Have you looked at the self-scheduling algorithm described in "USING MPI" by Gropp, Lusk, and Skjellum. Yes, a master-slave mode should be better for my module. In this way: 1. the master is started on node 0 and execute the Python script, the master send command

Re: [OMPI users] Choices on how to implement a python module in MPI.

2007-02-04 Thread Tom Rosmond
Have you looked at the self-scheduling algorithm described in "USING MPI" by Gropp, Lusk, and Skjellum. I have seen efficient implementations of it for large satellite data assimilation problems in numerical weather prediction, where load distribution across processors cannot be predicted in advan

[OMPI users] Choices on how to implement a python module in MPI.

2007-02-04 Thread Bo Peng
Dear list, I have a python module written in C++ to help users manipulate a huge amount of genetics data. Using this module, users can write a script to create/load/manipulate data easily. For efficiency and memory management reasons, I would like to write a MPI version of the module so that I ca