[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] running jobs parallely on 2 machines
- Date: Wed, 02 Mar 2005 08:34:12 -0600
- From: Greg Thain <gthain@xxxxxxxxxxx>
- Subject: Re: [Condor-users] running jobs parallely on 2 machines
Rajiv wrote:
Dear All,
I have configured condor on two machines. I would like to run jobs on
two machines parallely. I
s this possible in condor.
This sure is possible with Condor. Condor can either run job-parallel
or task-parallel jobs. With job-parallel, you just break up your
computation into separate processes, perhaps by dividing up the input,
and submit multiple jobs. With Task-parallel, you need to explicitly
use the MPI library to partition up your work to run on multiple CPUs.
The Condor manual discusses how do set up MPI.
-greg