Job Script Generator
Video Tutorials
Job Script
#!/bin/bash
#SBATCH --time=01:00:00 # walltime
#SBATCH --ntasks=1 # number of processor cores (i.e. tasks)
#SBATCH --nodes=1 # number of nodes
#SBATCH --mem-per-cpu=1024M # memory per CPU core
# Set the max number of threads to use for programs using OpenMP. Should be <= ppn. Does nothing if the program doesn't use OpenMP.
export OMP_NUM_THREADS=$SLURM_CPUS_ON_NODE
# LOAD MODULES, INSERT CODE, AND RUN YOUR PROGRAMS HERE
More Slurm documentation
If you wish to include this script generator in your own website, download the latest code from GitHub.