is it possible to use variable expansion in #SBATCH
lines in slurm? for instance I want to have line below:
#SBATCH --array=0-100%{$1-10}
so that by default it uses 10 concurrent job unless I manually pass an argument when I call sbatch
.
Above gives me an Invalid job array specification
error.