Page History
...
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
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 | ||
---|---|---|
| ||
. /etc/profile |
...