Re: [OMPI users] Open MPI task scheduler

2010-06-21 Thread Matthieu Brucher
2010/6/21 Jack Bryan : > Hi, > thank you very much for your help. > What is the meaning of " must find a system so that every task can be > serialized in the same form." What is the meaning of "serize " ? Serialize is the process of converting an object instance into a text/binary stream, and to c

Re: [OMPI users] Open MPI task scheduler

2010-06-21 Thread jody
;> Date: Sun, 20 Jun 2010 21:00:06 +0200 >> From: matthieu.bruc...@gmail.com >> To: us...@open-mpi.org >> Subject: Re: [OMPI users] Open MPI task scheduler >> >> 2010/6/20 Jack Bryan : >> > Hi, Matthieu: >> > Thanks for your help. >> > M

Re: [OMPI users] Open MPI task scheduler

2010-06-20 Thread Jack Bryan
nto it ? Do I need to install SOAP+TCP on my cluster so that I can use it ? Any help is appreciated. Jack June 20 2010 > Date: Sun, 20 Jun 2010 21:00:06 +0200 > From: matthieu.bruc...@gmail.com > To: us...@open-mpi.org > Subject: Re: [OMPI users] Open MPI task scheduler &g

Re: [OMPI users] Open MPI task scheduler

2010-06-20 Thread Jack Bryan
n, 20 Jun 2010 20:04:26 + > Subject: Re: [OMPI users] Open MPI task scheduler > > > On Jun 20, 2010, at 1:49 PM, Jack Bryan wrote: > > Hi, all: > > I need to design a task scheduler (not PBS job scheduler) on Open MPI cluster. > > Quick question - why *not* PBS

Re: [OMPI users] Open MPI task scheduler

2010-06-20 Thread Bill Rankin
On Jun 20, 2010, at 1:49 PM, Jack Bryan wrote: Hi, all: I need to design a task scheduler (not PBS job scheduler) on Open MPI cluster. Quick question - why *not* PBS? Using shell scripts with the Job Array and Dependent Jobs features of PBS Pro (not sure about Maui/Torque nor SGE) you can imp

Re: [OMPI users] Open MPI task scheduler

2010-06-20 Thread Matthieu Brucher
2010/6/20 Jack Bryan : > Hi, Matthieu: > Thanks for your help. > Most of your ideas show that what I want to do. > My scheduler should be able to be called from any C++ program, which can > put > a list of tasks to the scheduler and then the scheduler distributes the > tasks to other client nodes.

Re: [OMPI users] Open MPI task scheduler

2010-06-20 Thread Jack Bryan
il.com > To: us...@open-mpi.org > Subject: Re: [OMPI users] Open MPI task scheduler > > Hi Jack, > > What you are seeking is the client/server pattern. Have one node act > as a server. It will create a list of tasks or even a graph of tasks > if you have dependencies, and

Re: [OMPI users] Open MPI task scheduler

2010-06-20 Thread Matthieu Brucher
Hi Jack, What you are seeking is the client/server pattern. Have one node act as a server. It will create a list of tasks or even a graph of tasks if you have dependencies, and then create clients that will connect to the server with an RPC protocol (I've done this with a SOAP+TCP protocol, the se

[OMPI users] Open MPI task scheduler

2010-06-20 Thread Jack Bryan
Hi, all: I need to design a task scheduler (not PBS job scheduler) on Open MPI cluster. I need to parallelize an algorithm so that a big problem is decomposed into small tasks, which can be distributed to other worker nodes by the Scheduler and after being solved, the results of these tasks ar