Index
Slurm options get ignored when given as sbatch command line arguments
I give some Slurm options as command line arguments to sbatch
, but they are ignored!?
The syntax of sbatch
is: sbatch [OPTIONS(0)...] [ : [OPTIONS(N)...]] script(0) [args(0)...]
Thus, options for sbatch
have to be given before the batch script. Arguments given after the batch script are used as arguments for the batch script and not for sbatch
.