Versions Compared

Key

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

...

  • Queues are known as Partitions -, which means instead of the argument when submitting a job "-q short" to send something to the short (or some other) queue. on slurm it is now "-p short" (p for partition).

  • You'll need to change the various 'PBS' variables in your script. The common ones are listed below - many others available at the link above.

  • SBATCH partitions you can submit to: sbatch my.job (standard compute node) , sbatch -p short my.job (short queue, 1 hour - for testing), sbatch -p gpu my.job (GPU nodes), sbatch -p largemem my.job (large memory 1.5TB nodes)

...