I am trying to run multiple (several hundred) very similar job-files with slurm using sbatch
.
My .job file look like:
#SBATCH ...
...
...
srun ./someProg -a A -b B -c C -d D
Is there any convenient way to submit the job file using sbatch
with multiple options for A/B/C and D and generating a new job for every combination of A/B/C/D, without just generating hundreds of .job files? (I have already seen a lot of arrays in slurm files, but I do not think it will help me here anyway.)