Page MenuHomec4science

script_slurm_hil_2000_14.sh
No OneTemporary

File Metadata

Created
Tue, Jun 11, 20:25

script_slurm_hil_2000_14.sh

#!/bin/bash
#SBATCH -n 14
#SBATCH --time=4:50:00
#SBATCH -A phpc2019
#SBATCH --mem-per-cpu=4000
# mail alert at end of execution
#SBATCH --mail-type=END
# send mail to this address
#SBATCH --mail-user=sergio.hernandez@epfl.ch
# Script running the Conjugate Grandient Solver
# output on .dat and .out files
#
echo 'Loading modules'
module purge
module load intel intel-mkl intel-mpi
# ************************************************
# ** CG **
# ************************************************
echo CG Par STARTING at `date`
srun ./CG_Parallel input_options_hil_2000.txt > cgp_hil_2000_14.out
echo CG Par FINISHED at `date`

Event Timeline