This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
guide:m9000 [2015/02/20 14:41] sfebruary |
guide:m9000 [2021/12/09 16:42] (current) |
||
|---|---|---|---|
| Line 101: | Line 101: | ||
| ====MPI==== | ====MPI==== | ||
| - | ===Job submission=== | + | =====Job submission===== |
| + | [Courtesy of Sean February] | ||
| + | |||
| + | The queue name for the M9000 machine is spark. Your job script (see example below) must be located somewhere in ''/ | ||
| + | < | ||
| + | yourusername@login02: | ||
| + | </ | ||
| Example script: | Example script: | ||
| Line 111: | Line 117: | ||
| #PBS -l place=free | #PBS -l place=free | ||
| #PBS -l walltime=01: | #PBS -l walltime=01: | ||
| - | #PBS -o / | + | #PBS -o / |
| - | #PBS -e / | + | #PBS -e / |
| cd $PBS_O_WORKDIR | cd $PBS_O_WORKDIR | ||
| - | HOME_DIR=/ | + | HOME_DIR=/ |
| LOG_NAME=testjob_log | LOG_NAME=testjob_log | ||
| THIS_JOB=$HOME_DIR$LOG_NAME | THIS_JOB=$HOME_DIR$LOG_NAME | ||
| Line 128: | Line 134: | ||
| echo "My job ends here" >> $THIS_JOB | echo "My job ends here" >> $THIS_JOB | ||
| </ | </ | ||
| - | |||
| - | |||