Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Condor-users] Help for Job running arguments
Hi,Folks
I have a question about the running parameter for MPI jobs in Condor.
How to add the running arguments in Condor job script For example, for the
job I used before
mpirun -np 4 mpi_program.exe abcd #abcd is the running
argumet
Here is my Condor job script,
#-----------------------------------------------------------------------
#############################################
## submit description file for mpi_program
#############################################
universe = MPI
Executable = mpi_program.exe
arguments = abcd
output = outfile.$(NODE)
error = errfile.$(NODE)
#Requirements = Memory >= 32 && OpSys == "LINUX" && Arch =="INTEL"
machine_count = 2
queue
#-----------------------------------------------------------------------
It doesn't work. Any sugestion or advice is greatly appreciated,
Guoquan