...
Code Block | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
#SBATCH -A myPIRG<myPIRG> |
or
Code Block | ||
---|---|---|
| ||
#SBATCH --account=<myPIRG> |
...