Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create new baseline to fix the issue with develop-20230504 and recover baseline on gaea #1749

Merged
merged 11 commits into from
May 12, 2023
15 changes: 7 additions & 8 deletions modulefiles/ufs_gaea.intel.lua
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
help([[
This module loads libraries required for building and running UFS Weather Model
on the NOAA RDHPC machine Gaea using Intel-2022.1.2
on the NOAA RDHPC machine Gaea using Intel-2022.0.2
]])

whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===])

load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"))
load_any(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"),"cmake")

prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack")
prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2022.0.2/modulefiles/stack")
load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0"))
load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0"))
load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0"))

load(pathJoin("intel-classic", os.getenv("intel_ver") or "2022.0.2"))
load_any(pathJoin("cray-mpich", os.getenv("cray_mpich_ver") or "7.7.11"),"cray-mpich")
load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2022.0.2"))
load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11"))
load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0"))
load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37"))

-- needed for WW3 build
load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0"))
-- Needed at runtime:
load("alps")

Expand Down
1,352 changes: 676 additions & 676 deletions tests/RegressionTests_acorn.intel.log

Large diffs are not rendered by default.

460 changes: 230 additions & 230 deletions tests/RegressionTests_cheyenne.gnu.log

Large diffs are not rendered by default.

1,372 changes: 686 additions & 686 deletions tests/RegressionTests_cheyenne.intel.log

Large diffs are not rendered by default.

2,440 changes: 1,203 additions & 1,237 deletions tests/RegressionTests_gaea.intel.log

Large diffs are not rendered by default.

604 changes: 296 additions & 308 deletions tests/RegressionTests_hera.gnu.log

Large diffs are not rendered by default.

5,654 changes: 3,551 additions & 2,103 deletions tests/RegressionTests_hera.intel.log

Large diffs are not rendered by default.

1,254 changes: 627 additions & 627 deletions tests/RegressionTests_jet.intel.log

Large diffs are not rendered by default.

1,414 changes: 707 additions & 707 deletions tests/RegressionTests_orion.intel.log

Large diffs are not rendered by default.

1,162 changes: 581 additions & 581 deletions tests/RegressionTests_wcoss2.intel.log

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions tests/detect_machine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ case $(hostname -f) in
alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn
alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn

gaea9) MACHINE_ID=gaea ;; ### gaea9
gaea10) MACHINE_ID=gaea ;; ### gaea10
gaea11) MACHINE_ID=gaea ;; ### gaea11
gaea12) MACHINE_ID=gaea ;; ### gaea12
gaea13) MACHINE_ID=gaea ;; ### gaea13
gaea14) MACHINE_ID=gaea ;; ### gaea14
gaea15) MACHINE_ID=gaea ;; ### gaea15
gaea16) MACHINE_ID=gaea ;; ### gaea16
gaea9.ncrc.gov) MACHINE_ID=gaea ;; ### gaea9
gaea10.ncrc.gov) MACHINE_ID=gaea ;; ### gaea10
gaea11.ncrc.gov) MACHINE_ID=gaea ;; ### gaea11
gaea12.ncrc.gov) MACHINE_ID=gaea ;; ### gaea12
Expand Down
1 change: 1 addition & 0 deletions tests/fv3_conf/compile_slurm.IN_gaea
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
##SBATCH --qos=@[QUEUE]
#SBATCH --clusters=es
#SBATCH --partition=eslogin
#SBATCH --exclude=gaea9
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=8
#SBATCH --time=180
Expand Down
2 changes: 1 addition & 1 deletion tests/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then
fi


BL_DATE=20230504
BL_DATE=20230510

RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}}

Expand Down