You are located in service: Integrated Hosting

Job submission

Job submission

guide

On this page, you will find information about job submission.

General information on using SLURM on the cluster is available on the page RWTH High Performance Computing .

The only difference between submitting a job to a public partition and submitting a job to the IH partition is the specification of the project. For example, the following script is submitted to the default partition (c18m):

normal.sh

#!/usr/bin/zsh

#SBATCH --job-name=my_job
#SBATCH --output=output_%J.txt
#SBATCH --mem-per-cpu=512M
#SBATCH --time=60

a.out


By specifying the appropriate project (account), the job is submitted to the IH partition.

ih.sh

#!/usr/bin/zsh

#SBATCH --job-name=my_job
#SBATCH --output=output_%J.txt
#SBATCH --mem-per-cpu=512M
#SBATCH --time=60
#SBATCH --account=abcd

a.out

Additional information:

last changed on 08/21/2026

How did this content help you?

(opens in new tab)
This work is licensed under a Creative Commons Attribution - Share Alike 3.0 Germany License (opens in new tab)