Difference between revisions of "Janus Cheat Sheet"
From PHASTA Wiki
(Created page with "available nodes/cores: pbsnodes -a Jobscript Template: #!/bin/bash #PBS -N name_of_job #PBS -l walltime=0:20:00 #PBS -l nodes=1:ppn=12 . /curc/tools/utils/dkinit ...") |
m |
||
Line 11: | Line 11: | ||
. /curc/tools/utils/dkinit | . /curc/tools/utils/dkinit | ||
reuse .openmpi-1.4.3_intel-12.0_ib | reuse .openmpi-1.4.3_intel-12.0_ib | ||
− | + | ||
mpirun /path/to/executable | mpirun /path/to/executable | ||
Revision as of 15:15, 31 August 2011
available nodes/cores:
pbsnodes -a
Jobscript Template:
#!/bin/bash #PBS -N name_of_job #PBS -l walltime=0:20:00 #PBS -l nodes=1:ppn=12 . /curc/tools/utils/dkinit reuse .openmpi-1.4.3_intel-12.0_ib mpirun /path/to/executable
Submission:
qsub -q janus-debug jobscript.sh
Status
checkjob job_id showq -u $USER
Cancel:
qdel job_id