User Tools

Site Tools


srun

This is an old revision of the document!


srun

Runs an executable file. It is really intended to be used from within sbatch scripts. Used within a script, each invocation of srun starts a new job step (terminology you will see in the slurm documentation).

Runs the job in the foreground (and blocks unless you use “&”).

If you use srun directly (in a login terminal) your job will end if you close your terminal, unless you redirect IO and disown the job.

Examples

srun hostname

srun -n3 hostname (runs 3 tasks: copies of the program specified, may run on the same node)

srun -n20 hostname (runs 20 tasks, will run on multiple nodes)

srun -N3 hostname (runs on 3 different nodes)

srun –pty bash -i

  • Runs an interactive shell on a compute node.
  • You can specify a specific node with -w node5 (for instance).

Protecting against Hang-Ups

srun long-job > srun.out 2>&1 &
disown
srun.1492454649.txt.gz · Last modified: 2017/04/17 14:44 by root