Le 04/04/2024 à 03:33, Loris Bennett via slurm-users a écrit :
I have never really understood the approach of having different
partitions for different lengths of job, but it seems to be quite
widespread, so I assume there are valid use cases.
However, for our around 450 users, of which about 20
Dear Rike
I'm facing the same error in my own cluster, slurm version 23.11.3. And
i notice that my task are running in sequence, not in parralele. I'm
using the example inside the srun manual:
#!/bin/bash
srun -n1 sleep 30 &
srun -n1 sleep 45 &
srun -n1 sleep 20 &
srun -n1 sleep 25 &
wait