Versions Compared

Key

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

...

Panel
borderColorblack
borderStylesolid
titleSlurm 22.05:

Srun will no longer read in SLURM_CPUS_PER_TASK. This means you will implicitly have to specify --cpus-per-task on your srun calls, or set the new SRUN_CPUS_PER_TASK env var to accomplish the same thing.

Users The Atos HPC users should adjust the jobs script by exporting SRUN_CPUS_PER_TASK environmental variable manually:

...

To reduce user impact and made old job scripts compatible with the new Slurm, HPC support team has set SRUN_CPUS_PER_TASK environmental variable :

...

In ksh, sh, and any other job type, one need to call user profile needs to be sourced manually in the script to benefit from the patch created by the HPC support team.:

Code Block
languagebash
. /etc/profile

...