You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to use submitit with SLURM sub-scheduling? I work on a system where each new SLURM job allocates at least one node. If possible, I would like to use submitit with SLURM sub-scheduling to get e.g. 4 small SLURM jobs per node.
Best,
George
The text was updated successfully, but these errors were encountered:
Hi, I'm not aware of this SLURM feature, could you share some link to docs and example slurm commands ?
In general submitit has escape hatches to pass arbitrary CLI argument to slurm so if you know the right sbatch/srun command, you should be able to write them with submitit
With the following script, 4 small jobs run in a single node:
`#!/bin/bash -l
#SBATCH --time=1:0:0
#SBATCH --account=def-your-project-account
#SBATCH --nodes=1
#SBATCH -p cpu
#SBATCH -q test
#SBATCH --ntasks=4 # number of tasks
#SBATCH --ntasks-per-node=4 # number of tasks per node
#SBATCH --cpus-per-task=32 # number of cores per task
Is it possible to use submitit with SLURM sub-scheduling? I work on a system where each new SLURM job allocates at least one node. If possible, I would like to use submitit with SLURM sub-scheduling to get e.g. 4 small SLURM jobs per node.
Best,
George
The text was updated successfully, but these errors were encountered: