Skip to content

Commit d98902f

Browse files
Use new EPIC-maintained hpc-stack on Jet (ufs-community#771)
Update the Jet build module to point to the new hpc-stack. Add CMake file to run the unit tests on Jet. Fixes ufs-community#770.
1 parent 93e85ac commit d98902f

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

cmake/mpiexec.jet

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
#
3+
# Arguments:
4+
#
5+
# $1 - Number of MPI Tasks
6+
# $2+ - Executable and its arguments
7+
#
8+
9+
ACCOUNT=nesdis-rdo2
10+
QOS=debug
11+
PARTITION=xjet
12+
13+
NP=$1
14+
shift
15+
16+
srun -A $ACCOUNT -p $PARTITION -q $QOS -n $NP $@

modulefiles/build.jet.intel.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ load(pathJoin("cmake", cmake_ver))
88
hpss_ver=os.getenv("hpss_ver") or ""
99
load(pathJoin("hpss", hpss_ver))
1010

11-
prepend_path("MODULEPATH", "/lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack")
11+
prepend_path("MODULEPATH", "/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack")
1212

1313
hpc_ver=os.getenv("hpc_ver") or "1.2.0"
1414
load(pathJoin("hpc", hpc_ver))

0 commit comments

Comments
 (0)