Page MenuHomec4science

script_slurm_hil_4000_10.sh
No OneTemporary

File Metadata

Created
Wed, Jul 17, 16:46

script_slurm_hil_4000_10.sh

#!/bin/bash
#SBATCH -n 10
#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 -n 10 ./CG_Parallel input_options_hil_4000.txt > cgp_hil_4000_10.out
echo CG Par FINISHED at `date`

Event Timeline