Goal: Introduction to Slurm and how to start interactive sessions, submit jobs and monitor.
...
Code Block |
---|
[]$ salloc -–help
[]$ man salloc
# Lots of options.
# The bare minimum.
# This will provide the defaults of one node, one core and 1G of memory.
[]$ salloc –A <project-name> -t <wall-time> |
Info |
---|
As with other Linux commands, there are short and long form for the options. Format for: -t/--time : Acceptable time formats include "minutes ", "minutes:seconds ", "hours:minutes:seconds ", "days-hours ", "days-hours:minutes " and "days-hours:minutes:seconds ".
|
...
Info |
---|
You submit a job to the queue and walk away. Monitor its progress/state using command-line and/or email notifications. Once complete, come back and analyze results.
|
...
Submit Jobs: sbatch
: Template
...