SLURM Batch Jobs
A brief introduction to SLURM batch jobs and a simple example job can be found in our site's Getting Started section.
This page will provide lower level details related to SLURM jobs, as well as a more complex example submission script.
SLURM Batch Job Arguments
Below are a subset of sbatch arguments that can be used to specify a job on the cluster. You do not need to include them all.
Please refer to the slurm documentation on sbatch for more options.
Argument | Description | Format |
---|---|---|
Common Agruments | ||
--job-name | The job name. This will appear when you check the status with squeue. | Something descriptive enough to easily identify and differentiate jobs with. Default is the JobID. |
--nodes | Maximum number of nodes to be used. | Usually 1, MPI requires a minimum of 2. Default is 1. |
--ntasks, --ntasks-per-node | Specify the maximum number of tasks to be launched per node. | Default is 1. |
--cluster | The cluster that the job will run on. | smp, mpi, gpu, htc |
--partition | The partition of the cluster that the job will run on. | See Node Configurations |
--time | Define the max walltime required for the job | The format is days-hh:mm:ss. |
--qos | Declare the Quality of Service to be used. The default is normal. You need to specify `long` if the walltime is greater than 3 days. |
short, normal, long |
--error | File to redirect standard error. | full path or filename to be written to working directory |
--mem | Memory limit per compute node | Memory in MB |
User Notification | ||
--mail-user | Email address for notifications | PittID@pitt.edu |
--mail-type | Conditions for sending notifications | END for when the job finishes, FAIL for if the job fails while running. |
Use-case / Cluster Specific Arguments | ||
--cpus-per-task | Advise the SLURM controller that ensuing job steps will require ncpus number of processors per task. Use this to facillitate multithreading. | |
--gres | Specify usage of a general resource. This is used on GPU cluster jobs to indicate number of cards needed. | --gres=gpu:1 for 1 card. Required when submitting to the GPU cluster. |
A More Complex SLURM Submission Script Example
Below is a more abstracted example that loads some modules from the module systems, copies inputs and outputs, etc.
#!/bin/bash #SBATCH --job-name=<job_name> #SBATCH --nodes=<number of nodes> #SBATCH --ntasks-per-node=<tasks per node> #SBATCH --cluster=<cluster name> #SBATCH --partition=<partition> #SBATCH --mail-user=<user_ID>@pitt.edu #SBATCH --mail-type=END,FAIL #SBATCH --time=<days-HH:MM:SS> #SBATCH --qos=<qos> module purge module load module1 module2 cp <inputs> $SLURM_SCRATCH cd $SLURM_SCRATCH run_on_exit(){ cp -r $SLURM_SCRATCH/* $SLURM_SUBMIT_DIR } trap run_on_exit EXIT srun <job executable with parameters> crc-job-stats.py cp <outputs> $SLURM_SUBMIT_DIR
Specify the interpreter
A shebang (#!) line must be present. The shebang line can call any shell or scripting language available on the cluster.
For example, #!/bin/bash, #!/bin/tcsh, #!/bin/env python or #!/bin/env perl.
The sbatch arguments are provided in a batch script by preceding them with #SBATCH. The resource specific arguments (ntasks, mem, nodes, time) specify the limits of your jobs resources.
Module loading
You'll need to specify which modules your job requires. See the module system page for more details on searching for available software.
It's always a good idea to perform a `module purge` first to make sure the environment is clean.
Input Handling
After you load your modules, you can automate any other setup you need to adjust the job's running environment or get your input ready.
In the case of the example, this is copying input data to a scratch location, and setting up a trap to copy temp files and intermediate outputs.
By default, the working directory of your job is the directory from which the batch script was submitted. You can use the sbatch argument `--chdir` to adjust this.
Start Parallel Job with srun
srun starts your job.also takes the --nodes, --tasks-per-node and --cpus-per-task arguments to allow each job step to change the utilized resources but they cannot exceed those given to sbatch.
Report Job Statistics
Add a call to the `crc-job-stats.py` wrapper script to display statistics for your job.
Output Handling
Automate any manipulation of the job's output files at the end of the script.
Interacting with your Job after Submission
scancel - Cancel a job, job array, or job step.
squeue - View information about jobs in the queue.
Frequently Asked Questions
Q: Where can I find more specific examples of these batch scripts?
A: Example Jobs utilizing commonly loaded modules can be found in
/ihome/crc/how_to_run
For users performing NGS analyses on HTC, see Dr. Fangping Mu's extensive notes on this page.
Q: I'm confused by the interaction between nodes, tasks, and cpus-per-task. How does that work?
A: Slurm is very explicit in how one requests resources.
A node is a compute node in the cluster. The default partition of the SMP cluster has 100 nodes for example.
The term task in this context can be thought of as a “process”, and is related to the number of CPUs/cores you request.
Say you've specifed --ntasks=16.
The first case is that it's for a HTC/SMP/GPU job with 16 independent processes. The implicit configuration here is --nodes=1, --ntasks=16 => --ntasks-per-node=16
A second case is that you are running a multi-process program on MPI. (--nodes=< a number 2 or greater >)
--ntasks=16 alone means your program will create a maximum of 16 processes, but you dont care how the cores are distributed.
You can use --ntasks-per-node to get more specific about what number of tasks you want running across the number of nodes you're requesting.
Another case is that you have a multi-threaded program, that is a single task, but can use multiple cores.
--ntasks=1, --cpus-per-task=16
This is using --cpus-per-task to specify that you have 1 task that can be completed by multithreading across 16 cores.
On HTC, SMP, and GPU, individual tasks cannot be split across multiple compute nodes, so requesting a number of CPUs with --cpus-per-task flag will always result in all your CPUs allocated on the same compute node.
Q: Slurm doesn't seem to be taking my .bashrc additions into account. How do I prompt this?
A: Slurm does not source ~/.bashrc or ~/.profile by default. If your job submission requires environment setting specified by these files, you should include
source ~/.bashrc
in your job submiussion script after any `module load ...` commands.
Q: I want to submit a job, but I am unsure what allocation I am drawing resources from. How do I check this?
A: This can be determined with the `sacctmgr` (slurm account manager) command.
sacctmgr show associations onlydefaults | grep USERNAME
Where USERNAME is your CRC username.
The output will show, for each cluster (first column), which allocation (second column, refered to as GROUPNAME below) is charged from by default.
If your user account is associated with multiple PI compute resource allocations, you can run the command above without the `onlydefaults` argument to list all of them, and then specify which one your job will charge with the '-A' or '--account=' arguments followed by the group name.
#SBATCH --account=GROUPNAME # Charge GROUPNAME instead of the default.
Q: My analyses require that I run the same job on many different input files, or the same input with many different sets of parameters. Is there a better way to submit collections of jobs?
A: Yes, please see this documentation on submitting multiple jobs.