18 lines
456 B
Bash
18 lines
456 B
Bash
#!/bin/bash
|
|
|
|
#SBATCH --account=ec54
|
|
#SBATCH --job-name=pt_narrow
|
|
#SBATCH --time=0-02:00:00
|
|
#SBATCH --ntasks=8
|
|
#SBATCH --mem-per-cpu=1G
|
|
#SBATCH --cpus-per-task=10
|
|
|
|
set -o errexit # Exit the script on any error
|
|
set -o nounset # Treat any unset variables as an error
|
|
|
|
module --quiet purge # Reset the modules to the system default
|
|
module load Armadillo/11.4.3-foss-2022b
|
|
module load OpenMPI/4.1.5-GCC-12.3.0
|
|
|
|
srun ./phase_transition_mpi 2.25 2.35 40 10000000
|