Job Output

Slurm jobs will run in the directory from which the "sbatch" command was run. They will automatically write standard output and error to "slurm-%j.out" , where %j is the job number.

You can control where standard output and error are written using the "-o" and "-e" options, e.g.

  • sbatch -o output.log -e error.log ..... run.slurm
Edit this page