Skip to content

Commit 71fc588

Browse files
Merge branch 'develop' into feature/sfc_climo_gen.frac
Fixes ufs-community#709.
2 parents 085858f + d98902f commit 71fc588

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)