Re: [OMPI users] General question on the implementation of a"scheduler" on client side...

2010-05-21 Thread Olivier Riff
Hello Jeff, thanks for your detailed answer. 2010/5/20 Jeff Squyres > You're basically talking about implementing some kind of > application-specific protocol. A few tips that may help in your design: > > 1. Look into MPI_Isend / MPI_Irecv for non-blocking sends and

Re: [OMPI users] General question on the implementation of a"scheduler" on client side...

2010-05-20 Thread Jeff Squyres
You're basically talking about implementing some kind of application-specific protocol. A few tips that may help in your design: 1. Look into MPI_Isend / MPI_Irecv for non-blocking sends and receives. These may be particularly useful in the server side, so that it can do other stuff while

[OMPI users] General question on the implementation of a "scheduler" on client side...

2010-05-20 Thread Olivier Riff
Hello, I have a general question about the best way to implement an openmpi application, i.e the design of the application. A machine (I call it the "server") should send to a cluster containing a lot of processors (the "clients") regularly task to do (byte buffers from very various size). The