Job submission

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