Page MenuHomec4science

script_slurm_hil_2000_128.sh
No OneTemporary

File Metadata

Created
Wed, Sep 18, 18:44

script_slurm_hil_2000_128.sh

#!/bin/bash
#SBATCH -n 128
#SBATCH --time=4:50:00
#SBATCH -A phpc2019
# 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_128.out
echo CG Par FINISHED at `date`

Event Timeline