Migrating from Torque to Slurm: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
===Job Submission Options=== | ===Job Submission Options=== | ||
As with Torque, job options and resource requests in Slurm can be set in the job submission script or as options to the job submission command. However, the syntax used to request resources is different and the table below summarizes some of the options that are frequently used. | |||
{| width="100%" border="1" cellspacing="0" cellpadding="2" align="top" class="wikitable unsortable" | |||
|- | |||
! scope="col" | Option | |||
! scope="col" | Torque (qsub) | |||
! scope="col" | Slurm (sbatch) | |||
|- | |||
|- | |||
| Script directive || #PBS || #SBATCH | |||
|- | |||
| Job name || -N <name> || --job-name=<name> <br> -J <name> | |||
|- | |||
| Queue || -q <queue> || --partition=<queue> | |||
|- | |||
| Wall time limit || -l walltime=<hh:mm:ss> || --time=<hh:mm:ss> | |||
|- | |||
| Node count || -l nodes=<count> || --nodes=<count> <br> -N <count> | |||
|- | |||
| Process count per node || -l ppn=<count> || --ntasks-per-node=<count> | |||
|- | |||
| core count (per process) || || --cpus-per-task=<cores> | |||
|- | |||
| Memory limit || -l mem=<limit> || --mem=<limit> (Memory per node in mega bytes – MB) | |||
|- | |||
| Minimum memory per processor || -l pmem=<limit> || --mem-per-cpu=<memory> | |||
|- | |||
| Request GPUs || -l gpus=<count> || --gres=gpu:<count> | |||
|- | |||
| Request specific nodes || -l nodes=<node>[,node2[,...]]> || -w, --nodelist=<node>[,node2[,...]]> <br> -F, --nodefile=<node file> | |||
|- | |||
| Job array || -t <array indices> || --array <indexes> <br> -a <indexes> <br> Where <indexes> is replaced by a range (0-15), a list (0, 6, 16-32), or a step function (0-15:4) | |||
|- | |||
| Standard output file ||-o <file path> || --output=<file path> (path must exist) | |||
|- | |||
| Standard error file || -e <file path> || --error=<file path> (path must exist) | |||
|- | |||
| Combine stdout/stderr to stdout || -j oe || --output=<combined out and err file path> | |||
|- | |||
| Copy environment || -V || --export=ALL (default) <br> --export=NONE to not export environment | |||
|- | |||
| Copy environment variable || -v <variable[=value][,variable2=value2[,...]]> || --export=<variable[=value][,variable2=value2[,...]]> | |||
|- | |||
| Job dependency || -W depend=after:jobID[:jobID...] <br> -W depend=afterok:jobID[:jobID...] <br> -W depend=afternotok:jobID[:jobID...] <br> -W depend=afterany:jobID[:jobID...] || --dependency=after:jobID[:jobID...] <br> --dependency=afterok:jobID[:jobID...] <br> --dependency=afternotok:jobID[:jobID...] <br> --dependency=afterany:jobID[:jobID...] | |||
|- | |||
| Request event notification || -m <events> || --mail-type=<events> <br> Note: multiple mail-type requests may be specified in a comma separated list: <br> --mail-type=BEGIN,END,NONE,FAIL,REQUEUE | |||
|- | |||
| Email address || -M <email address> || --mail-user=<email address> | |||
|- | |||
| Defer job until the specified time || -a <date/time> || --begin=<date/time> | |||
|- | |||
| Node exclusive job || qsub -n || --exclusive | |||
|} | |||
Revision as of 09:51, 11 February 2020
Later this year GACRC will be implementing the Simple Linux Utility for Resource Management (Slurm) software for job scheduling and resource management on Sapelo2, to replace the Torque (PBS) resource manager and Moab scheduling system that it currently uses.
How is Slurm different from Torque?
Job Submission Options
As with Torque, job options and resource requests in Slurm can be set in the job submission script or as options to the job submission command. However, the syntax used to request resources is different and the table below summarizes some of the options that are frequently used.
Option | Torque (qsub) | Slurm (sbatch) |
---|---|---|
Script directive | #PBS | #SBATCH |
Job name | -N <name> | --job-name=<name> -J <name> |
Queue | -q <queue> | --partition=<queue> |
Wall time limit | -l walltime=<hh:mm:ss> | --time=<hh:mm:ss> |
Node count | -l nodes=<count> | --nodes=<count> -N <count> |
Process count per node | -l ppn=<count> | --ntasks-per-node=<count> |
core count (per process) | --cpus-per-task=<cores> | |
Memory limit | -l mem=<limit> | --mem=<limit> (Memory per node in mega bytes – MB) |
Minimum memory per processor | -l pmem=<limit> | --mem-per-cpu=<memory> |
Request GPUs | -l gpus=<count> | --gres=gpu:<count> |
Request specific nodes | -l nodes=<node>[,node2[,...]]> | -w, --nodelist=<node>[,node2[,...]]> -F, --nodefile=<node file> |
Job array | -t <array indices> | --array <indexes> -a <indexes> Where <indexes> is replaced by a range (0-15), a list (0, 6, 16-32), or a step function (0-15:4) |
Standard output file | -o <file path> | --output=<file path> (path must exist) |
Standard error file | -e <file path> | --error=<file path> (path must exist) |
Combine stdout/stderr to stdout | -j oe | --output=<combined out and err file path> |
Copy environment | -V | --export=ALL (default) --export=NONE to not export environment |
Copy environment variable | -v <variable[=value][,variable2=value2[,...]]> | --export=<variable[=value][,variable2=value2[,...]]> |
Job dependency | -W depend=after:jobID[:jobID...] -W depend=afterok:jobID[:jobID...] -W depend=afternotok:jobID[:jobID...] -W depend=afterany:jobID[:jobID...] |
--dependency=after:jobID[:jobID...] --dependency=afterok:jobID[:jobID...] --dependency=afternotok:jobID[:jobID...] --dependency=afterany:jobID[:jobID...] |
Request event notification | -m <events> | --mail-type=<events> Note: multiple mail-type requests may be specified in a comma separated list: --mail-type=BEGIN,END,NONE,FAIL,REQUEUE |
Email address | -M <email address> | --mail-user=<email address> |
Defer job until the specified time | -a <date/time> | --begin=<date/time> |
Node exclusive job | qsub -n | --exclusive |
Job Environment and Environment Variables
Common Job Commands
How to Submit and Manage Jobs
How to Monitor Jobs
Valid Job States