- Timestamp:
- Mar 8, 2010 6:59:10 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mrun
r503 r505 3400 3400 if [[ "$ENVIRONMENT" = BATCH ]] 3401 3401 then 3402 mpiexec -n $numprocs ./a.out $ROPTS # for fujitsu-compiler 3403 # for pgi mpirun -np $numprocs -machinefile ${QSUB_NODEINF} ./a.out $ROPTS 3404 # for intel mpirun_rsh -np $numprocs -hostfile ${QSUB_NODEINF} MV2_USE_SRQ=0 ./a.out ${ROPTS} || /bin/true 3402 if [[ "$cond2" = fujitsu ]] 3403 then 3404 mpiexec -n $numprocs ./a.out $ROPTS # for fujitsu-compiler 3405 elif [[ "cond2" = pgi ]] 3406 then 3407 mpirun -np $numprocs -machinefile ${QSUB_NODEINF} ./a.out $ROPTS 3408 else 3409 mpirun_rsh -np $numprocs -hostfile ${QSUB_NODEINF} MV2_USE_SRQ=0 ./a.out ${ROPTS} || /bin/true 3410 fi 3405 3411 else 3406 mpirun -np $numprocs ./a.out $ROPTS 3407 # for intel mpiruni_rsh -np $numprocs ./a.out $ROPTS 3412 if [[ "$cond2" = "" ]] 3413 then 3414 mpiruni_rsh -np $numprocs ./a.out $ROPTS # for intel 3415 else 3416 mpirun -np $numprocs ./a.out $ROPTS 3417 fi 3408 3418 fi 3409 3419 set +xv
Note: See TracChangeset
for help on using the changeset viewer.