...
And then run the sbatch command.
Another option, in case you are using salloc command, add --res=<reservation name>
Code Block |
---|
$ salloc -N 4 -p helios --res=helios_ophirm_23246 |
Create a reservation example:
Code Block |
---|
$ sudo scontrol create reservation duration=120 user=ophirm nodes=helios032 starttime=now
Reservation created: ophirm_149 |
Delete a reservation:
Code Block |
---|
$ sudo scontrol delete reservation=ophirm_149 |
For more info about create and cancel the reservations see here: https://slurm.schedmd.com/reservations.html
...