Contents
Hints using SLURM
| Inquiring a submitted job |
squeue -u <user> provides jobid. scontrol show jobs jobid detailed information. |
| Looking for a partition |
scontrol show partition [short] Information on all or a specific partition sinfo [-p partition] |
| Information on a node |
scontrol show node [node471] Information on all or a specific node |
| List of nodes used |
SLURM_JOB_NODELIST holds nodes for parallel jobs, but in the form like
node[423-437]. More convenient is the output (in the running job script) of srun hostname -s | sort. |
| Graphical display nodes |
smap Not recommended? |
| Query job priorities | sprio |
| Information about shares | sshare |
| List of features/resources | sinfo -o "%15N %4c %7m %46f %10G" |

