Slurm, Reference
Important Commands
There are a number of commands you need to interact with the scheduler.
squeue
- List running and pending jobs.sbatch /path/to/scipt.job
- Submit job script.scancel ${jobid}
- Cancel job with ID${jobid}
.sinfo
- Get some information on the cluster.
Further Reading
There is much more to Slurm than discussed here and there are copious amounts of guidelines on the internet. See, for example,
- Official Documentation (https://slurm.schedmd.com/documentation.html)
- Array Jobs (https://slurm.schedmd.com/job_array.html)
- Build Job Pipelines using Dependencies (https://hpc.nih.gov/docs/job_dependencies.html)
- UiT Slurm Examples (https://hpc-uit.readthedocs.io/en/latest/jobs/examples.html)
- LMGTFY (http://www.lmgtfy.com/?q=slurm+tutorial)