[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] MPI jobs through a script



Hey Greg, thanks for taking your time to answer our question. Probably the
easiest example that I can think of is the MPI version of JTR (John the Ripper)
you essentially run a script called "run_all.sh" and it looks something like:

---------------
#!/bin/sh

PROCS=$1

rm -f core.*
mpirun -np $PROCS ./john -incremental crack
---------------

My question is how to run this script under condor.

thanks in advance

Danny
New Mexico State University



Quoting Greg Thain <gthain@xxxxxxxxxxx>:

> rnayar@xxxxxxxx wrote:
> > Hello everyone, 
> > 
> > Rok Roskar and I are wondering if anyone has tried to run an MPI
> application
> > through a script and how this is setup. If anyone has done this please let
> us know.
> 
> I'm not quite sure what you mean "through a script", but if you want to 
> run a script on the head node to set up some parameters or change 
> something about the environment there before the MPI run starts, the 
> parallel universe in 6.7 lets you do this.
> 
> -greg
> _______________________________________________
> Condor-users mailing list
> Condor-users@xxxxxxxxxxx
> https://lists.cs.wisc.edu/mailman/listinfo/condor-users
>