Difference between revisions of "SLURM"

From Rizzo_Lab
Jump to: navigation, search
(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 -...")
(No difference)

Revision as of 14:42, 22 January 2020

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.