Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add srun warning

...

Code Block
languagetext
srun --account=<myPIRG> ...

NOTE: The 'srun' command will NOT pay attention to '#SBATCH' directives, so if the account is not specified using an argument, you will get this error!


For sbatch, include the following directive in your submission script:

Code Block
languagebash
#SBATCH -A myPIRG<myPIRG>

or

Code Block
languagebash
#SBATCH --account=<myPIRG>

...