#!/bin/bash # Job Name and Files (also --job-name) #SBATCH -J nest_izhik #Output and error (also --output, --error): #SBATCH -o ./%x.%j.out #SBATCH -e ./%x.%j.err #Initial working directory (also --chdir): #SBATCH -D ./ #SBATCH --no-requeue #SBATCH --export=NONE #SBATCH --get-user-env #SBATCH --clusters= #SBATCH --partition=_std #SBATCH --qos= #SBATCH --account= #SBATCH --nodes=14 #SBATCH --tasks-per-node=8 #SBATCH --cpus-per-task=16 #SBATCH --time=01:00:00 #SBATCH --hint=nomultithread #Important module load slurm_setup #Run the program: export OMP_NUM_THREADS=16 mpiexec -n 4 -bootstrap=ssh python3 nest_simulation.py