Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Differentiates output files using array indices. Similar to PBS default. See SLURM Output Filename Patterns above for more information.

    Code Block
    languagebash
    themeConfluenceMidnight
    #SBATCH --output=Job-%a.out 


  2. Appends the output from all tasks in an array to the same output file. Warning: if a file exists with that name prior to running your job, the output will be appended to that file

    Code Block
    languagebash
    themeConfluenceMidnight
    #SBATCH --open-mode=append


...