Update home authored by van Vliet's avatar van Vliet
...@@ -466,6 +466,17 @@ This is a resource manager and a scheduler all in one. ...@@ -466,6 +466,17 @@ This is a resource manager and a scheduler all in one.
- resource manager: are there resources free (memory, cpu, gpus, etc) on the nodes for the job? - resource manager: are there resources free (memory, cpu, gpus, etc) on the nodes for the job?
- scheduler: when to run the job? - scheduler: when to run the job?
### User commands
|Command | Info |
| --- | --- |
| salloc | Obtain a Slurm job allocation (a set of nodes), execute a command, and then release the allocation when the command is finished |
| sbatch | Submit a batch script to Slurm |
| scancel | Used to signal jobs or job steps that are under the control of Slurm |
| scontrol | Used view and modify Slurm configuration and state |
| sinfo | View information about Slurm nodes and partitions |
| squeue | View information about jobs located in the Slurm scheduling queue |
| srun | Run parallel jobs |
### Partitions (info) (in SGE called queues) ### Partitions (info) (in SGE called queues)
#### Available partitions #### Available partitions
... ...
......