Batch jobs¶
Only 56 cores available on LUMI-G
The LUMI-G compute nodes have the low-noise mode activated. This mode reserve 1 core to the operating system. In order to get a more balanced layout, we also disabled the first core in each of the 8 L3 region. As a consequence only 56 cores are available to the jobs. Jobs requesting 64 cores/node will never run.
This page covers advanced topics related to running Slurm batch jobs on LUMI. If you are not already familiar with Slurm, you should read the Slurm quickstart guide which covers the basics. You can also refer to the Slurm documentation or manual pages, in particular the page about sbatch.
For example job scripts, please see the following pages:
Specifying the account¶
The account option (--account=project_<id>
) is mandatory. Failing to set
it will cause the following error:
Unable to allocate resources: Job violates accounting/QOS policy
(job submit limit, user's size and/or time limits)
If you don't want to specify the account to use every time you submit a job, you
can add the following lines to your .bashrc
file.
where you have to replace project_<id>
with the ID of the project you have
been granted.
Automatic requeuing¶
The LUMI Slurm configuration has automatic requeuing of jobs upon node failure enabled. It means that if a node fails, your job will be automatically resubmitted to the queue and will have the same job ID and possibly truncate the previous output. Here are some important parameters you can use to alter the default behavior.
- you can disable automatic requeuing using the
--no-requeue
option - you can avoid your output file being truncated in case of requeuing by using
the
--open-mode=append
option
You can apply these two options permanently by exporting the following
environment variables in your .bashrc
:
SBATCH_NO_REQUEUE=1
to disable requeuingSBATCH_OPEN_MODE=append
to avoid output truncating after requeuing
If you want to perform specific operations in your batch script when a job has
been requeued, you can check the value of the SLURM_RESTART_COUNT
variable.
The value of this variable will be 0
if it is the first time the job is run.
If the job has been restarted, the value will be the number of times the
job has been restarted.
Common error messages¶
Below are some common error messages you may get when your job submission fails.
Invalid account or account/partition combination specified¶
The complete error message is:
sbatch: error: Batch job submission failed: Invalid account or account/partition combination specified
This error message relates to improper use of the Slurm options
--account=<project>
and --partition
. The most common causes are:
- the project does not exist.
- the project exists, but you are not a member of it.
- the partition does not exist.
Job violates accounting/QOS policy¶
The complete error message is:
sbatch: error: AssocMaxSubmitJobLimit
sbatch: error: Batch job submission failed: Job violates accounting/QOS policy (job submit limit, user's size and/or time limits)
The most common causes are:
- your project has already used all of its allocated compute resources.
- job script is missing the
--account
parameter. - your project has exceeded the limit for the number of simultaneous jobs, either running or queuing. Note that Slurm counts each job within an array job as a separate job.
Common Slurm options¶
Here is an overview of some of the most commonly used Slurm options.
Basic job specification¶
Option | Description |
---|---|
--time |
Set a limit on the total run time of the job allocation |
--account |
Charge resources used by this job to specified project |
--partition |
Request a specific partition for the resource allocation |
--job-name |
Specify a name for the job allocation |
Specify tasks distribution¶
Option | Description |
---|---|
--nodes |
Number of nodes to be allocated to the job |
--ntasks |
Set the maximum number of tasks (MPI ranks) |
--ntasks-per-node |
Set the number of tasks per node |
--ntasks-per-socket |
Set the number of tasks on each node |
--ntasks-per-core |
Set the maximum number of task on each core |
Request CPU cores¶
Option | Description |
---|---|
--cpus-per-task |
Set the number of cores per tasks |
Request GPUs¶
Option | Description |
---|---|
--gpus |
Set the total number of GPUs to be allocated for the job |
--gpus-per-node |
Set the number of GPUs per node |
--gpus-per-task |
Set the number of GPUs per task |
Request memory¶
Option | Description |
---|---|
--mem |
Set the memory per node |
--mem-per-cpu |
Set the memory per allocated CPU cores |
--mem-per-gpu |
Set the memory per allocated GPU |
Info
The /tmp
directory on the compute nodes resides in memory. The memory
used for /tmp
is included in the job memory allocation. If you use
/tmp
, you must allocate memory for it to avoid running out of
memory.
Pipelining with dependencies¶
Job dependencies allow you to defer the start of a job until the specified
dependencies have been satisfied. Dependencies can be defined in a batch script
with the --dependency
directive or be passed as a command-line argument to
sbatch
.
The type
defines the condition that the job with ID job_id
must fulfil
before the job which depends on it can start. For example,
$ sbatch job1.sh
Submitted batch job 123456
$ sbatch --dependency=afterany:123456 job2.sh
Submitted batch job 123458
will only start execution of job2.sh
when job1.sh
has finished. The available
types and their description are presented in the table below.
Dependency type | Description |
---|---|
after:jobid[:jobid...] |
Begin after the specified jobs have started |
afterany:jobid[:jobid...] |
Begin after the specified jobs have finished |
afternotok:jobid[:jobid...] |
Begin after the specified jobs have failed |
afterok:jobid[:jobid...] |
Begin after the specified jobs have run to completion |
The example below demonstrates a bash script for submission of multiple Slurm
batch jobs with dependencies. It also shows an example of a helper function
that extracts the job ID from the output of the sbatch
command.
#!/bin/bash
submit_job() {
sub="$(sbatch "$@")"
if [[ "$sub" =~ Submitted\ batch\ job\ ([0-9]+) ]]; then
echo "${BASH_REMATCH[1]}"
else
exit 1
fi
}
# first job - no dependencies
id1=$(submit_job job1.sh)
# Two jobs that depend on the first job
id2=$(submit_job --dependency=afterany:$id1 job2.sh)
id3=$(submit_job --dependency=afterany:$id1 job3.sh)
# One job that depends on both the second and the third jobs
id4=$(submit_job --dependency=afterany:$id2:$id3 job4.sh)