Skip to content
Snippets Groups Projects
job_ablhpg.sbatch 398 B
Newer Older
Guillaume S's avatar
Guillaume S committed
#!/bin/bash
#SBATCH --job-name=ablhpg
#SBATCH --output=JOBS/%x-%j.out 
#SBATCH --qos=nf
#SBATCH --time=00:30:00


module purge
module load prgenv/gnu gcc/12.2.0 hpcx-openmpi/may23 hdf5-parallel/may23 netcdf4-parallel/may23 xios/trunk/r2515_gcc-xmpi.may23
module list

set -xv

Guillaume S's avatar
Guillaume S committed
if [ -n "$1" ]; then pnml=$1; else exit 1; fi
Guillaume S's avatar
Guillaume S committed

Guillaume S's avatar
Guillaume S committed
/home/ar0s/SRC/NEMO/main/tools/ABL_TOOLS/main_uvg_hpg.exe ${pnml}
Guillaume S's avatar
Guillaume S committed

exit 0