SLURM

From Rizzo_Lab
Revision as of 14:42, 22 January 2020 by Gduarter (talk | contribs) (Created page with "==Header Information== The header of your SLURM script should contain the following lines: #!/bin/sh #SBATCH --partition= #SBATCH --time= #SBATCH --nodes= #SBATCH -...")
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Header Information

The header of your SLURM script should contain the following lines:

#!/bin/sh 
#SBATCH --partition= 
#SBATCH --time= 
#SBATCH --nodes= 
#SBATCH --ntasks= 
#SBATCH --job-name= 
#SBATCH --output=%x-%j.o

#!/bin/sh indicates which shell will be used in the script.